/* =========================================================================
   RevuTap — Premium Digital Agency
   Recreated from the Claude Design handoff (RevuTap.dc.html).
   Dark luxury / gold theme. Vanilla CSS, no build step. Bilingual HE/EN.
   ========================================================================= */

:root {
  --bg: #0A0A0A;
  --bg-alt: #0d0c0a;
  --ink: #F5F5F0;
  --muted: #9A9A9A;
  --muted-2: #C9C9C4;
  --muted-3: #CFCFC9;

  --gold: #D4AF37;
  --gold-soft: #F0D67A;
  --gold-text-grad: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  --gold-btn-grad: linear-gradient(135deg, #E7C75A, #D4AF37);

  --card-grad: linear-gradient(160deg, #161616, #0e0e0e);
  --serif: "Playfair Display", "Frank Ruhl Libre", serif;
  --sans: "Montserrat", "Heebo", sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);

  --maxw: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(212, 175, 55, .3); color: var(--ink); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

a { color: inherit; }

/* ===== Shared text treatments ===== */
.grad-text {
  background: var(--gold-text-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.shimmer { animation: rt-shimmer 7s linear infinite; }

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.eyebrow--lined {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}
.eyebrow__line { width: 34px; height: 1px; background: rgba(212, 175, 55, .5); }

.head { text-align: center; margin-bottom: 70px; }
.head__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 4.6vw, 52px);
  margin: 18px 0 0;
  color: var(--ink);
  letter-spacing: -.5px;
}
.head__title--wide { max-width: 760px; margin-inline: auto; line-height: 1.25; font-size: clamp(28px, 4.4vw, 46px); text-wrap: balance; }
.head__sub {
  color: var(--muted);
  font-size: clamp(14px, 1.8vw, 17px);
  line-height: 1.7;
  max-width: 600px;
  margin: 22px auto 0;
  font-weight: 300;
}

/* ===== Buttons ===== */
.btn {
  text-decoration: none;
  display: inline-block;
  border-radius: 46px;
  font-weight: 600;
  letter-spacing: .4px;
  transition: all .35s var(--ease);
  cursor: pointer;
  font-family: inherit;
}
.btn--gold {
  color: var(--bg);
  background: var(--gold-btn-grad);
  border: 1px solid rgba(212, 175, 55, .6);
  box-shadow: 0 10px 30px rgba(212, 175, 55, .18);
}
.btn--gold:hover { box-shadow: 0 14px 42px rgba(212, 175, 55, .4); transform: translateY(-2px); }
.btn--ghost {
  color: var(--gold-soft);
  background: none;
  border: 1px solid rgba(212, 175, 55, .4);
  font-weight: 500;
}
.btn--ghost:hover { border-color: var(--gold); background: rgba(212, 175, 55, .06); }
.btn--sm { font-size: 13px; padding: 11px 22px; }
.btn--lg { font-size: 14.5px; padding: 16px 32px; }
.btn--block { width: 100%; padding: 15px; border: none; text-align: center; }

/* ===== Reveal-on-scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.rt-in { opacity: 1; transform: none; }

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed;
  top: 0; inset-inline-start: 0;
  width: 100%;
  height: 82px;
  z-index: 50;
  background: rgba(10, 10, 10, 0);
  border-bottom: 1px solid rgba(212, 175, 55, 0);
  transition: all .45s var(--ease);
}
.nav.is-scrolled {
  height: 66px;
  background: rgba(10, 10, 10, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, .14);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__brand {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .5px;
}
.nav__links { display: flex; align-items: center; gap: 38px; }
.nav__links > a:not(.btn) {
  text-decoration: none;
  color: var(--muted-2);
  font-size: 13.5px;
  letter-spacing: .6px;
  transition: color .3s;
}
.nav__links > a:not(.btn):hover { color: var(--gold-soft); }

.lang-btn {
  background: none;
  border: 1px solid rgba(212, 175, 55, .35);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1px;
  padding: 7px 12px;
  border-radius: 40px;
  cursor: pointer;
  transition: all .3s;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold-soft); }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span { width: 24px; height: 1.5px; background: var(--gold); display: block; }
.burger span:last-child { width: 16px; }

/* ===== Mobile overlay ===== */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(10, 10, 10, .97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .45s ease, transform .45s ease;
}
.overlay.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.overlay__close {
  position: absolute;
  top: 26px; inset-inline-end: 26px;
  background: none;
  border: 1px solid rgba(212, 175, 55, .35);
  color: var(--gold);
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}
.overlay__links { display: flex; flex-direction: column; gap: 26px; text-align: center; }
.overlay__links a { text-decoration: none; color: var(--ink); font-family: var(--serif); font-size: 30px; }
.overlay__links a.overlay__book { color: var(--gold); }
.overlay__links .lang-btn { margin-top: 10px; font-size: 13px; padding: 10px 20px; align-self: center; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 28px 80px;
}
.hero__bg { position: absolute; inset: 0; background: radial-gradient(120% 90% at 50% 0%, #161310 0%, #0A0A0A 55%); }
.hero__mesh { position: absolute; filter: blur(20px); pointer-events: none; }
.hero__mesh--1 {
  top: -30%; inset-inline-start: -20%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(212, 175, 55, .16), transparent 62%);
  animation: rt-mesh 18s ease-in-out infinite alternate;
}
.hero__mesh--2 {
  bottom: -25%; inset-inline-end: -15%;
  width: 65%; height: 65%;
  background: radial-gradient(circle, rgba(212, 175, 55, .1), transparent 60%);
  animation: rt-mesh 22s ease-in-out infinite alternate-reverse;
}
.hero__particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero__content { position: relative; max-width: 1000px; text-align: center; z-index: 2; }
.hero__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 7.2vw, 84px);
  line-height: 1.04;
  margin: 0;
  letter-spacing: -.5px;
  text-wrap: balance;
}
.hero__title-1 { color: var(--ink); }
.hero__sub {
  color: var(--muted);
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.7;
  max-width: 620px;
  margin: 30px auto 0;
  font-weight: 300;
}
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 42px; }
.hero__scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: .6;
}
.hero__scroll span:first-child { color: var(--muted); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 30px; background: linear-gradient(var(--gold), transparent); }

/* =========================================================================
   Generic section + grids
   ========================================================================= */
.section { position: relative; padding: 130px 28px; }
.section--services { max-width: var(--maxw); margin: 0 auto; }
.section--about { padding: 120px 28px; background: var(--bg-alt); border-block: 1px solid rgba(212, 175, 55, .1); }
.section--process { max-width: 1180px; margin: 0 auto; }
.section--testi { padding: 110px 28px; background: var(--bg-alt); border-block: 1px solid rgba(212, 175, 55, .1); overflow: hidden; }

.grid { display: grid; }
.grid--services { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; }
.grid--products { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid--stats { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 30px; }
.grid--process { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 34px; }

/* ===== Service cards ===== */
.svc-card {
  position: relative;
  background: linear-gradient(160deg, #161616, #101010);
  border: 1px solid rgba(212, 175, 55, .14);
  border-radius: 14px;
  padding: 38px 32px;
  min-height: 300px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: opacity .85s var(--ease), transform .35s ease, box-shadow .4s ease;
}
.svc-card:hover { box-shadow: 0 20px 50px rgba(0, 0, 0, .55), 0 0 0 1px rgba(212, 175, 55, .45); }
.svc-card__num { font-family: var(--serif); font-size: 30px; color: rgba(212, 175, 55, .55); font-weight: 600; margin-bottom: 24px; }
.svc-card__title { font-family: var(--serif); font-weight: 600; font-size: 23px; color: var(--ink); margin: 0 0 14px; line-height: 1.25; }
.svc-card__desc { color: var(--muted); font-size: 14.5px; line-height: 1.7; font-weight: 300; margin: 0 0 22px; }
.svc-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-card__tag { font-size: 11px; color: #B8973E; letter-spacing: .5px; border: 1px solid rgba(212, 175, 55, .2); border-radius: 30px; padding: 5px 11px; }
.svc-card__orb { position: absolute; bottom: -40px; inset-inline-end: -40px; width: 120px; height: 120px; background: radial-gradient(circle, rgba(212, 175, 55, .1), transparent 70%); border-radius: 50%; }

/* =========================================================================
   NFC SHOWPIECE
   ========================================================================= */
.section--nfc { background: linear-gradient(180deg, #0A0A0A, #0d0c0a 50%, #0A0A0A); overflow: hidden; }
.nfc__glow { position: absolute; top: 10%; left: 50%; transform: translateX(-50%); width: 70%; height: 60%; background: radial-gradient(circle, rgba(212, 175, 55, .08), transparent 65%); filter: blur(10px); pointer-events: none; }
.nfc__inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.head--nfc { margin-bottom: 64px; }

.nfc__how { display: flex; flex-direction: column; align-items: center; gap: 56px; margin-bottom: 90px; }
.phone { position: relative; width: 200px; height: 230px; display: flex; align-items: center; justify-content: center; }
.phone__ring { position: absolute; width: 120px; height: 120px; border: 1.5px solid rgba(212, 175, 55, .55); border-radius: 50%; animation: rt-ripple 2.6s ease-out infinite; }
.phone__body {
  position: relative;
  width: 128px; height: 218px;
  border-radius: 26px;
  border: 1px solid rgba(212, 175, 55, .4);
  background: linear-gradient(160deg, #1a1a1a, #0f0f0f);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .6), inset 0 0 0 4px #0A0A0A;
  animation: rt-tap 2.6s ease-in-out infinite;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  z-index: 2;
}
.phone__notch { width: 34px; height: 4px; border-radius: 4px; background: #2a2a2a; position: absolute; top: 9px; }
.phone__icon { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #E7C75A, #B38728); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 24px rgba(212, 175, 55, .5); color: var(--bg); font-size: 22px; font-weight: 700; font-family: serif; }
.phone__brand { color: var(--muted); font-size: 9px; letter-spacing: 1.5px; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; width: 100%; max-width: 980px; }
.step { text-align: center; padding: 0 12px; }
.step__num { width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(212, 175, 55, .35); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: var(--serif); font-size: 20px; color: var(--gold); background: rgba(212, 175, 55, .04); }
.step__text { color: var(--muted-3); font-size: 14.5px; line-height: 1.65; font-weight: 300; margin: 0; }

/* product cards */
.prod-card {
  background: linear-gradient(165deg, #161616, #0e0e0e);
  border: 1px solid rgba(212, 175, 55, .16);
  border-radius: 18px;
  padding: 18px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: opacity .85s var(--ease), transform .35s ease, box-shadow .45s ease;
}
.prod-card:hover { box-shadow: 0 26px 60px rgba(0, 0, 0, .6), 0 0 0 1px rgba(212, 175, 55, .5); }
.prod-card__media { position: relative; border-radius: 12px; overflow: hidden; border: 1px solid rgba(212, 175, 55, .18); background: #0a0a0a; }
.prod-card__media img { display: block; width: 100%; height: 330px; object-fit: cover; object-position: center 46%; }
.prod-card__body { padding: 24px 14px 12px; }
.prod-card__tagline { display: inline-block; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--bg); background: var(--gold-btn-grad); padding: 4px 11px; border-radius: 30px; font-weight: 600; margin-bottom: 14px; }
.prod-card__title { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--ink); margin: 0 0 10px; }
.prod-card__desc { color: var(--muted); font-size: 14px; line-height: 1.65; font-weight: 300; margin: 0; }

.nfc__foot { text-align: center; margin-top: 54px; }
.nfc__custom { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 680px; margin: 0 auto 30px; font-weight: 300; }

/* =========================================================================
   STATS
   ========================================================================= */
.about__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.stat__row { display: flex; align-items: flex-start; justify-content: center; gap: 2px; font-family: var(--serif); font-weight: 700; line-height: 1; }
.stat__value { font-size: clamp(40px, 5.5vw, 62px); }
.stat__suffix { font-size: 28px; color: var(--gold); margin-top: 6px; }
.stat__label { color: var(--muted); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin: 14px 0 0; font-weight: 400; }

/* =========================================================================
   PROCESS
   ========================================================================= */
.process { position: relative; }
.process__line { position: absolute; top: 27px; inset-inline: 8%; height: 1px; background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .5), transparent); z-index: 0; }
.proc { position: relative; z-index: 1; text-align: center; }
.proc__num { width: 54px; height: 54px; border-radius: 50%; background: var(--bg); border: 1px solid rgba(212, 175, 55, .5); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-family: var(--serif); font-size: 19px; color: var(--gold); box-shadow: 0 0 24px rgba(212, 175, 55, .12); }
.proc__title { font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--ink); margin: 0 0 10px; }
.proc__desc { color: var(--muted); font-size: 13.5px; line-height: 1.6; font-weight: 300; margin: 0; }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.testi { max-width: 980px; margin: 0 auto; text-align: center; }
.testi__quote-mark { font-family: var(--serif); font-size: 90px; line-height: .4; color: rgba(212, 175, 55, .4); display: block; height: 50px; }
.testi__stage { position: relative; min-height: 170px; display: flex; align-items: center; justify-content: center; }
.rt-testi-slide { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 0 10px; opacity: 0; animation: rt-testi 18s infinite; }
.rt-testi-slide:nth-child(1) { animation-delay: 0s; }
.rt-testi-slide:nth-child(2) { animation-delay: -6s; }
.rt-testi-slide:nth-child(3) { animation-delay: -12s; }
.testi__text { font-family: var(--serif); font-weight: 500; font-style: italic; font-size: clamp(20px, 3vw, 29px); line-height: 1.5; color: var(--ink); margin: 0 auto; max-width: 780px; text-wrap: balance; }
.testi__who { margin-top: 26px; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.testi__name { color: var(--gold); font-size: 15px; font-weight: 500; letter-spacing: .4px; }
.testi__role { color: var(--muted); font-size: 12.5px; letter-spacing: .5px; }
.testi__dots { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.rt-testi-dot { height: 8px; width: 8px; border-radius: 8px; border: none; padding: 0; background: rgba(212, 175, 55, .3); animation: rt-dot 18s infinite; }
.rt-testi-dot:nth-child(1) { animation-delay: 0s; }
.rt-testi-dot:nth-child(2) { animation-delay: -6s; }
.rt-testi-dot:nth-child(3) { animation-delay: -12s; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.section--contact { overflow: hidden; }
.contact__glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; height: 120%; background: radial-gradient(circle, rgba(212, 175, 55, .1), transparent 60%); filter: blur(10px); pointer-events: none; }
.contact__inner { position: relative; max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 54px; align-items: start; }
.contact__title { font-family: var(--serif); font-weight: 700; font-size: clamp(34px, 5vw, 56px); margin: 18px 0 22px; line-height: 1.1; letter-spacing: -.5px; }
.contact__sub { color: var(--muted); font-size: 15.5px; line-height: 1.7; font-weight: 300; max-width: 420px; margin: 0 0 30px; }
.contact__links { display: flex; flex-direction: column; gap: 16px; }
.contact__link { text-decoration: none; color: var(--muted-3); font-size: 14.5px; display: flex; align-items: center; gap: 12px; transition: color .3s; }
.contact__link span { color: var(--gold); }
.contact__link:hover { color: var(--gold-soft); }
.calendly { margin-top: 34px; border: 1px dashed rgba(212, 175, 55, .3); border-radius: 14px; padding: 24px; background: rgba(212, 175, 55, .03); }
.calendly__label { display: block; color: var(--gold); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.calendly__note { color: var(--muted); font-size: 13px; line-height: 1.6; margin: 0 0 14px; font-weight: 300; }
.calendly__btn { text-decoration: none; color: var(--gold-soft); font-size: 13.5px; font-weight: 500; border: 1px solid rgba(212, 175, 55, .4); padding: 10px 18px; border-radius: 40px; display: inline-block; transition: all .3s; }
.calendly__btn:hover { background: rgba(212, 175, 55, .08); }

.form-card { background: var(--card-grad); border: 1px solid rgba(212, 175, 55, .16); border-radius: 18px; padding: 38px 34px; }
.form-card label { display: block; color: var(--muted); font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(212, 175, 55, .18);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 20px;
  outline: none;
  transition: border-color .3s;
}
.form-card textarea { resize: vertical; margin-bottom: 24px; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: rgba(212, 175, 55, .6); }
.form-card option { background: #141414; }
.form-error { color: #e8a; font-size: 13px; line-height: 1.6; margin: 14px 0 0; text-align: center; }
.form-thanks { text-align: center; padding: 40px 10px; }
.form-thanks__check { width: 64px; height: 64px; border-radius: 50%; border: 1px solid rgba(212, 175, 55, .5); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; color: var(--gold); font-size: 30px; }
.form-thanks__title { font-family: var(--serif); font-size: 24px; color: var(--ink); margin: 0 0 10px; }
.form-thanks__body { color: var(--muted); font-size: 14px; line-height: 1.6; font-weight: 300; margin: 0; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { border-top: 1px solid rgba(212, 175, 55, .18); background: var(--bg); padding: 64px 28px 38px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; }
.footer__top { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; align-items: flex-start; padding-bottom: 44px; border-bottom: 1px solid rgba(255, 255, 255, .05); }
.footer__brand-col { max-width: 300px; }
.footer__brand { font-family: var(--serif); font-size: 24px; font-weight: 700; }
.footer__tagline { color: var(--muted); font-size: 13.5px; line-height: 1.7; font-weight: 300; margin: 16px 0 0; }
.footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 13px; }
.footer__heading { color: var(--gold); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.footer__col a { text-decoration: none; color: var(--muted); font-size: 13.5px; transition: color .3s; }
.footer__col a:hover { color: var(--gold-soft); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; padding-top: 26px; }
.footer__bottom > span { color: #6f6f6f; font-size: 12px; }
.footer__url { text-decoration: none; color: var(--gold); font-size: 12.5px; letter-spacing: .5px; }

/* =========================================================================
   Keyframes
   ========================================================================= */
@keyframes rt-shimmer { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }
@keyframes rt-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes rt-ripple { 0% { transform: scale(.45); opacity: .65; } 100% { transform: scale(2.6); opacity: 0; } }
@keyframes rt-tap { 0%, 100% { transform: translateY(0); } 46%, 54% { transform: translateY(12px); } }
@keyframes rt-mesh { 0% { transform: translate(-8%, -6%) rotate(0deg); } 100% { transform: translate(8%, 6%) rotate(18deg); } }
@keyframes rt-spin { to { transform: rotate(360deg); } }
@keyframes rt-testi { 0% { opacity: 0; transform: translateY(12px); } 4% { opacity: 1; transform: none; } 29% { opacity: 1; transform: none; } 34%, 100% { opacity: 0; transform: translateY(-8px); } }
@keyframes rt-dot { 0%, 34%, 100% { width: 8px; background: rgba(212, 175, 55, .3); } 4%, 29% { width: 26px; background: var(--gold); } }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 880px) {
  [data-desktop-nav] { display: none !important; }
  .burger { display: flex !important; }
}

/* =========================================================================
   Reduced motion
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .rt-testi-slide { animation: none; opacity: 0; }
  .rt-testi-slide:nth-child(1) { opacity: 1; }
  .rt-testi-dot { animation: none; }
  .rt-testi-dot:nth-child(1) { width: 26px; background: var(--gold); }
}
