/* Bienvenu Choupo — Personal Networking Hub
   Palette: midnight navy, warm gold, soft ivory. No external assets required. */
:root {
  --navy-950: #05101f;
  --navy-900: #07172c;
  --navy-800: #0c2441;
  --navy-700: #14375d;
  --gold-500: #d8ad55;
  --gold-400: #e8c875;
  --gold-300: #f3dda3;
  --ivory: #fffdf7;
  --sand: #f4efe4;
  --ink: #102034;
  --muted: #607087;
  --line: rgba(16,32,52,.12);
  --white-line: rgba(255,255,255,.14);
  --shadow: 0 24px 70px rgba(5,16,31,.14);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--gold-300); color: var(--navy-950); }
a { color: inherit; }
img { max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 100;
  background: var(--ivory); color: var(--navy-900); padding: 12px 18px;
  border-radius: 10px; font-weight: 800; transition: top .2s;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: relative; z-index: 20;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border: 1px solid rgba(216,173,85,.7);
  border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto;
  background: var(--navy-900); color: var(--gold-400);
  font-family: Georgia, "Times New Roman", serif; font-weight: 700; letter-spacing: -.04em;
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { color: var(--navy-900); font-size: .86rem; letter-spacing: .13em; }
.brand-copy span { margin-top: 5px; color: var(--muted); font-size: .68rem; letter-spacing: .06em; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase;
}
.back-link:hover { color: var(--navy-900); }
.lang-switch {
  display: inline-flex; align-items: center; padding: 3px;
  border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.66);
}
.lang-button {
  min-width: 40px; padding: 8px 10px; border: 0; border-radius: 999px;
  background: transparent; color: var(--muted); font-size: .72rem; font-weight: 900;
  letter-spacing: .08em; cursor: pointer;
}
.lang-button[aria-pressed="true"] { background: var(--navy-900); color: var(--ivory); }

/* Home */
.home-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 0 0, rgba(216,173,85,.13), transparent 32%),
    linear-gradient(125deg, #fffdf7 0%, #f8f4ea 100%);
}
.home-page .site-header { position: absolute; left: 50%; transform: translateX(-50%); }
.hero-home {
  min-height: 100vh; display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(390px, .94fr);
}
.hero-copy {
  padding: 128px max(6vw, calc((100vw - 1180px)/2)) 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.eyebrow {
  margin: 0 0 18px; display: flex; align-items: center; gap: 11px;
  color: #946b21; font-size: .72rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 38px; height: 2px; background: var(--gold-500); }
.hero-name {
  margin: 0; color: var(--navy-900); font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.4rem); font-weight: 500; line-height: .88; letter-spacing: -.055em;
}
.hero-name span { display: block; color: #b88329; }
.hero-role {
  margin: 22px 0 13px; color: var(--navy-800); font-size: clamp(.92rem, 1.5vw, 1.12rem);
  font-weight: 800; letter-spacing: .04em;
}
.disciplines { display: flex; flex-wrap: wrap; gap: 6px 14px; margin: 0; padding: 0; list-style: none; color: var(--muted); }
.disciplines li { font-size: .76rem; font-weight: 750; white-space: nowrap; }
.disciplines li:not(:last-child)::after { content: "•"; margin-left: 14px; color: var(--gold-500); }
.welcome-copy { max-width: 660px; margin: 25px 0 24px; color: #4f6076; font-size: .94rem; line-height: 1.66; }
.welcome-copy strong { color: var(--navy-900); font-weight: 850; }

.action-grid { width: min(650px, 100%); display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.action {
  min-height: 60px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  display: grid; grid-template-columns: 38px 1fr 23px; align-items: center; gap: 11px;
  background: rgba(255,255,255,.74); color: var(--navy-900); text-decoration: none;
  box-shadow: 0 5px 20px rgba(5,16,31,.04); transition: transform .22s, border-color .22s, box-shadow .22s, background .22s;
}
.action:hover { transform: translateY(-2px); border-color: rgba(216,173,85,.72); box-shadow: 0 14px 28px rgba(5,16,31,.09); background: white; }
.action-primary { grid-column: 1 / -1; background: var(--navy-900); color: white; border-color: var(--navy-900); }
.action-primary:hover { background: var(--navy-800); border-color: var(--gold-500); }
.action-icon {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(216,173,85,.14); color: #a77525;
}
.action-primary .action-icon { background: rgba(255,255,255,.10); color: var(--gold-400); }
.action-icon svg { width: 18px; height: 18px; }
.action-text { min-width: 0; }
.action-text strong { display: block; font-size: .75rem; letter-spacing: .07em; text-transform: uppercase; }
.action-text small { display: block; margin-top: 4px; color: var(--muted); font-size: .7rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.action-primary .action-text small { color: rgba(255,255,255,.63); }
.action-arrow { font-size: 1.12rem; color: var(--gold-500); transform: translateX(0); transition: transform .2s; }
.action:hover .action-arrow { transform: translateX(3px); }

.hero-visual {
  position: relative; min-height: 720px; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
  background:
    radial-gradient(circle at 48% 22%, rgba(232,200,117,.22), transparent 25%),
    linear-gradient(150deg, var(--navy-800), var(--navy-950));
}
.hero-visual::before {
  content: ""; position: absolute; width: min(39vw, 520px); aspect-ratio: 1;
  border: 1px solid rgba(216,173,85,.24); border-radius: 50%; top: 10%; right: -13%;
  box-shadow: 0 0 0 60px rgba(216,173,85,.035), 0 0 0 120px rgba(216,173,85,.025);
}
.hero-visual::after {
  content: ""; position: absolute; inset: 0; opacity: .12;
  background-image: radial-gradient(rgba(255,255,255,.55) .7px, transparent .7px);
  background-size: 23px 23px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}
.gold-rule { position: absolute; top: 0; left: 14%; height: 96px; width: 1px; background: var(--gold-500); z-index: 3; }
.portrait-halo {
  position: absolute; z-index: 1; bottom: 6%; width: 74%; aspect-ratio: .86;
  border-radius: 45% 45% 12px 12px; border: 1px solid rgba(216,173,85,.47);
  background: linear-gradient(165deg, rgba(216,173,85,.14), rgba(255,255,255,.015));
}
.portrait {
  position: relative; z-index: 3; width: min(91%, 650px); max-height: 88vh;
  object-fit: contain; object-position: center bottom; display: block;
  filter: drop-shadow(0 26px 35px rgba(0,0,0,.32));
}
.connect-seal {
  position: absolute; top: 22%; left: 7%; z-index: 5; width: 116px; aspect-ratio: 1;
  display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(216,173,85,.64);
  background: rgba(5,16,31,.78); color: var(--gold-300); backdrop-filter: blur(10px);
  text-align: center; font-family: Georgia, serif; font-size: .83rem; line-height: 1.25;
  box-shadow: 0 12px 30px rgba(0,0,0,.24);
}
.connect-seal::after { content: ""; position: absolute; inset: 6px; border: 1px dashed rgba(216,173,85,.39); border-radius: inherit; }
.visual-note {
  position: absolute; z-index: 5; right: 6%; bottom: 5%; width: 220px;
  color: rgba(255,255,255,.73); font-family: Georgia, serif; font-size: .9rem; line-height: 1.45;
}
.visual-note::before { content: "“"; display: block; color: var(--gold-500); font-size: 2.3rem; line-height: .6; }
.home-footnote { margin: 18px 0 0; color: #7c8795; font-size: .69rem; letter-spacing: .04em; }

/* Interior pages */
.inner-page { min-height: 100vh; background: var(--ivory); }
.inner-page .site-header { border-bottom: 1px solid var(--line); }
.page-hero { position: relative; overflow: hidden; background: var(--navy-900); color: white; }
.page-hero::before {
  content: ""; position: absolute; width: 560px; height: 560px; right: -170px; top: -250px;
  border: 1px solid rgba(216,173,85,.25); border-radius: 50%; box-shadow: 0 0 0 80px rgba(216,173,85,.035), 0 0 0 160px rgba(216,173,85,.025);
}
.page-hero-inner { position: relative; z-index: 1; width: min(1050px, calc(100% - 40px)); margin: 0 auto; padding: 88px 0 82px; }
.page-kicker { margin: 0 0 14px; color: var(--gold-400); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .2em; }
.page-title { max-width: 800px; margin: 0; font-family: Georgia, serif; font-size: clamp(2.6rem, 6vw, 5.3rem); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.page-lead { max-width: 670px; margin: 24px 0 0; color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.75; }
.hero-cta-row { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  min-height: 50px; padding: 0 20px; border: 1px solid transparent; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  text-decoration: none; text-transform: uppercase; font-size: .73rem; font-weight: 900; letter-spacing: .1em;
  transition: transform .2s, background .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold-500); color: var(--navy-950); }
.button-gold:hover { background: var(--gold-400); }
.button-ghost { border-color: rgba(255,255,255,.22); color: white; }
.button-ghost:hover { border-color: var(--gold-500); background: rgba(255,255,255,.05); }
.button-navy { background: var(--navy-900); color: white; }
.button-outline { border-color: var(--line); color: var(--navy-900); background: white; }

.section { width: min(1050px, calc(100% - 40px)); margin: 0 auto; padding: 82px 0; }
.section-tight { padding-top: 56px; padding-bottom: 56px; }
.section-head { max-width: 700px; margin-bottom: 36px; }
.section-label { color: #9a6e22; font-size: .7rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.section-title { margin: 10px 0 0; color: var(--navy-900); font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.35rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.08; }
.section-copy { margin: 13px 0 0; color: var(--muted); line-height: 1.7; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.service-card { position: relative; min-height: 240px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; overflow: hidden; }
.service-number { color: rgba(216,173,85,.28); font-family: Georgia, serif; font-size: 3.2rem; line-height: 1; }
.service-card h3 { margin: 27px 0 10px; color: var(--navy-900); font-family: Georgia, serif; font-size: 1.45rem; font-weight: 600; }
.service-card p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.62; }
.service-card::after { content: ""; position: absolute; left: 27px; bottom: 0; width: 45px; height: 3px; background: var(--gold-500); }

.approach-wrap { background: var(--sand); }
.approach { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.approach-step { position: relative; padding: 22px 12px 22px 30px; border-left: 1px solid rgba(216,173,85,.42); }
.approach-step:first-child { border-left: 0; padding-left: 0; }
.approach-step span { display: block; color: #a47729; font-size: .66rem; font-weight: 900; letter-spacing: .14em; }
.approach-step strong { display: block; margin-top: 9px; color: var(--navy-900); font-family: Georgia, serif; font-size: 1.1rem; }

.cta-panel { position: relative; overflow: hidden; padding: 52px; border-radius: var(--radius-lg); background: var(--navy-900); color: white; }
.cta-panel::after { content: ""; position: absolute; width: 240px; height: 240px; right: -70px; bottom: -150px; border: 1px solid rgba(216,173,85,.5); border-radius: 50%; box-shadow: 0 0 0 45px rgba(216,173,85,.05); }
.cta-panel h2 { position: relative; z-index: 1; max-width: 610px; margin: 0; font: 500 clamp(2rem,4vw,3.2rem)/1.08 Georgia,serif; }
.cta-panel p { position: relative; z-index: 1; max-width: 610px; color: rgba(255,255,255,.68); line-height: 1.65; }
.cta-panel .button { position: relative; z-index: 1; margin-top: 12px; }
.disclaimer { margin-top: 24px; color: #8993a1; font-size: .68rem; line-height: 1.6; }

/* Journey */
.journey-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.journey-manifesto { margin: 0; color: var(--navy-900); font: 500 clamp(1.7rem,3vw,2.6rem)/1.2 Georgia,serif; }
.journey-manifesto span { color: #b88329; }
.timeline { display: grid; }
.timeline-item { position: relative; display: grid; grid-template-columns: 62px 1fr; gap: 20px; padding: 0 0 37px; }
.timeline-item::before { content: ""; position: absolute; left: 23px; top: 48px; bottom: 0; width: 1px; background: rgba(216,173,85,.45); }
.timeline-item:last-child::before { display: none; }
.timeline-icon { width: 47px; height: 47px; border-radius: 50%; display: grid; place-items: center; background: var(--navy-900); color: var(--gold-400); font: 600 1rem Georgia,serif; }
.timeline-content { padding-top: 4px; }
.timeline-content h2 { margin: 0; color: var(--navy-900); font: 600 1.45rem Georgia,serif; }
.timeline-content p { margin: 9px 0 0; color: var(--muted); line-height: 1.6; }
.value-statement { padding: 38px 42px; border-left: 4px solid var(--gold-500); background: var(--sand); font: 500 clamp(1.45rem,3vw,2.2rem)/1.35 Georgia,serif; color: var(--navy-900); }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: stretch; }
.contact-list { display: grid; gap: 12px; }
.contact-card { min-height: 98px; padding: 20px; display: grid; grid-template-columns: 48px 1fr auto; gap: 16px; align-items: center; border: 1px solid var(--line); border-radius: 17px; background: white; text-decoration: none; transition: border-color .2s, transform .2s; }
.contact-card:hover { border-color: rgba(216,173,85,.75); transform: translateX(3px); }
.contact-card-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--sand); color: #9f7225; font-weight: 900; }
.contact-card-label { color: #8792a1; font-size: .66rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.contact-card-value { display: block; margin-top: 6px; color: var(--navy-900); font-weight: 750; font-size: .9rem; overflow-wrap: anywhere; }
.qr-panel { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 35px; border-radius: var(--radius-md); background: var(--navy-900); color: white; text-align: center; }
.qr-frame {
  width: min(250px, 75vw); aspect-ratio: 1 / 1; padding: 14px;
  display: grid; place-items: center; overflow: visible;
  border-radius: 18px; background: var(--ivory);
  box-shadow: 0 20px 45px rgba(0,0,0,.24);
}
.qr-frame img {
  display: block; width: 100%; height: 100%; max-width: none;
  aspect-ratio: 1 / 1; object-fit: contain; object-position: center;
  border-radius: 6px;
}
.qr-panel h2 { margin: 24px 0 8px; font: 500 1.6rem Georgia,serif; }
.qr-panel p { max-width: 320px; margin: 0; color: rgba(255,255,255,.63); font-size: .82rem; line-height: 1.55; }
.qr-url { margin-top: 14px; color: var(--gold-400); font-size: .7rem; letter-spacing: .05em; }
.save-row { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }

/* Digital card */
.card-stage { min-height: calc(100vh - 92px); padding: 50px 20px 80px; background: var(--sand); }
.card-stage-head { width: min(920px, 100%); margin: 0 auto 24px; display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.card-stage-head h1 { margin: 0; color: var(--navy-900); font: 500 2.2rem Georgia,serif; }
.business-card-grid { width: min(920px, 100%); margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.business-card { position: relative; overflow: hidden; aspect-ratio: 1.75; min-height: 250px; padding: 34px; border-radius: 18px; box-shadow: var(--shadow); }
.card-front { background: var(--navy-900); color: white; }
.card-front::before { content: ""; position: absolute; width: 250px; aspect-ratio: 1; border: 1px solid rgba(216,173,85,.27); border-radius: 50%; right: -90px; top: -100px; box-shadow: 0 0 0 45px rgba(216,173,85,.04); }
.card-front .mini-mark { color: var(--gold-400); font: 700 1.15rem Georgia,serif; }
.card-front h2 { margin: 52px 0 8px; font: 500 1.7rem Georgia,serif; letter-spacing: .01em; }
.card-front .card-role { color: var(--gold-300); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.card-front .card-fields { position: absolute; left: 34px; bottom: 28px; max-width: calc(100% - 155px); color: rgba(255,255,255,.57); font-size: .63rem; line-height: 1.45; }
.card-front .front-qr-box {
  position: absolute; z-index: 3; right: 22px; bottom: 20px;
  width: 96px; aspect-ratio: 1; padding: 8px;
  display: grid; place-items: center; border-radius: 11px;
  background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.card-front .front-qr-box img,
.card-back .back-qr-box img {
  display: block; width: 100%; height: 100%; max-width: none;
  aspect-ratio: 1 / 1; object-fit: contain; object-position: center;
}
.card-back { background: white; color: var(--navy-900); display: grid; grid-template-columns: minmax(0, 1fr) 128px; gap: 20px; align-items: center; }
.card-back h2 { margin: 0 0 22px; font: 500 2rem Georgia,serif; }
.card-back p { margin: 8px 0; color: var(--muted); font-size: .68rem; overflow-wrap: anywhere; }
.card-back .back-qr-box {
  width: 128px; aspect-ratio: 1; padding: 9px;
  display: grid; place-items: center; border: 1px solid var(--line);
  border-radius: 12px; background: #fff;
}

.site-footer { width: min(1050px, calc(100% - 40px)); margin: 0 auto; padding: 28px 0 38px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #778392; font-size: .72rem; }
.footer-signoff { color: var(--navy-900); font-family: Georgia,serif; font-size: .9rem; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: #9a6e22; }

@media (max-width: 980px) {
  .home-page .site-header { position: relative; left: auto; transform: none; }
  .hero-home { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 52px max(20px,6vw) 65px; order: 2; }
  .hero-visual { min-height: 560px; order: 1; }
  .portrait { max-height: 550px; width: min(76%, 550px); }
  .connect-seal { left: 12%; }
  .visual-note { right: 10%; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .journey-intro { grid-template-columns: 1fr; gap: 42px; }
  .contact-layout { grid-template-columns: 1fr; }
  .business-card-grid { grid-template-columns: 1fr; max-width: 560px; }
}

@media (max-width: 650px) {
  .site-header { width: calc(100% - 28px); padding: 16px 0; }
  .brand-copy span { display: none; }
  .brand-copy strong { font-size: .72rem; }
  .back-link span { display: none; }
  .hero-visual { min-height: 420px; }
  .portrait { width: min(94%, 480px); max-height: 415px; }
  .portrait-halo { width: 86%; bottom: 4%; }
  .connect-seal { width: 88px; top: 17%; left: 4%; font-size: .66rem; }
  .visual-note { display: none; }
  .hero-copy { padding-top: 45px; }
  .hero-name { font-size: clamp(3.2rem, 17vw, 5rem); }
  .hero-role { line-height: 1.45; }
  .disciplines { gap: 6px 10px; }
  .disciplines li:not(:last-child)::after { margin-left: 10px; }
  .welcome-copy { margin-top: 20px; font-size: .88rem; }
  .action-grid { grid-template-columns: 1fr; }
  .action-primary { grid-column: auto; }
  .action { min-height: 64px; }
  .home-footnote { text-align: center; }
  .page-hero-inner { padding: 63px 0 61px; }
  .page-title { font-size: clamp(2.65rem, 13vw, 4rem); }
  .section { padding: 58px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 210px; }
  .approach { grid-template-columns: 1fr; }
  .approach-step, .approach-step:first-child { padding: 17px 0 17px 24px; border-left: 1px solid rgba(216,173,85,.42); border-top: 0; }
  .cta-panel { padding: 35px 27px; border-radius: 22px; }
  .contact-card { grid-template-columns: 44px 1fr 18px; padding: 16px; }
  .contact-card-icon { width: 44px; height: 44px; }
  .save-row { display: grid; }
  .save-row .button { width: 100%; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .card-stage-head { align-items: flex-start; flex-direction: column; }
  .business-card { padding: 25px; min-height: 230px; }
  .card-front h2 { margin-top: 43px; }
  .card-front .card-fields { left: 25px; bottom: 22px; max-width: calc(100% - 135px); }
  .card-front .front-qr-box { right: 18px; bottom: 18px; width: 92px; padding: 7px; }
  .card-back { grid-template-columns: minmax(0, 1fr) 102px; gap: 14px; }
  .card-back .back-qr-box { width: 102px; padding: 7px; }
}

@media print {
  .site-header, .card-stage-head, .site-footer { display: none !important; }
  .card-stage { padding: 0; background: white; }
  .business-card-grid { display: block; width: 3.5in; }
  .business-card { width: 3.5in; height: 2in; min-height: 0; margin: 0 0 .2in; border-radius: 0; box-shadow: none; page-break-inside: avoid; }
  .card-front .front-qr-box { width: .9in; right: .18in; bottom: .16in; padding: .06in; }
  .card-back .back-qr-box { width: 1.08in; padding: .06in; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
