/* ===== FIORI Underwear Bandung — style ===== */
:root {
  --maroon: #6e1f3a;
  --maroon-d: #551429;
  --rose: #b23a5f;
  --rose-soft: #d98aa1;
  --gold: #c8a15a;
  --gold-d: #a9843f;
  --cream: #fdf7f4;
  --cream-2: #f8ece7;
  --nude: #efd9cf;
  --ink: #2a2126;
  --muted: #6a595e;
  --gold-text: #8a6a2e;
  --line: #ecdcd6;
  --white: #ffffff;
  --shadow: 0 18px 40px -24px rgba(110, 31, 58, 0.35);
  --radius: 18px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92%); margin-inline: auto; }

/* ===== Aksesibilitas & utilitas ===== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--maroon); color: #fff; padding: .7em 1em; border-radius: 0 0 8px 0; z-index: 100; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--maroon); outline-offset: 2px; }
.btn--primary:focus-visible, .filter__btn.is-active:focus-visible, .social:focus-visible, .fab:focus-visible { outline-color: var(--gold); outline-offset: 3px; }
section[id] { scroll-margin-top: 84px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em; font-family: var(--sans); font-weight: 500;
  letter-spacing: .02em; border: 1.5px solid transparent; cursor: pointer;
  padding: .85em 1.7em; border-radius: 999px; font-size: .95rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--maroon); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--maroon-d); }
.btn--ghost { border-color: var(--maroon); color: var(--maroon); background: transparent; }
.btn--ghost:hover { background: var(--maroon); color: #fff; }
.btn--lg { padding: 1em 2.1em; font-size: 1.02rem; }
.btn--sm { padding: .6em 1.2em; font-size: .85rem; }

/* ===== Navbar ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 247, 244, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: 0 8px 30px -18px rgba(0,0,0,.25); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; letter-spacing: .18em; color: var(--maroon); }
.brand__sub { font-size: .62rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold-text); margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-size: .92rem; color: var(--ink); position: relative; transition: color .2s; }
.nav__links a:not(.btn):hover { color: var(--maroon); }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--maroon); transition: .3s; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: clamp(4rem, 12vw, 8rem) 0 clamp(3.5rem, 9vw, 6rem); }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 55% at 78% 18%, rgba(217,138,161,.5), transparent 60%),
    radial-gradient(50% 50% at 12% 85%, rgba(200,161,90,.28), transparent 60%),
    linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 55%, var(--nude) 100%);
}
.hero__inner { position: relative; z-index: 1; text-align: center; max-width: 780px; margin-inline: auto; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: .32em; font-size: .72rem; color: var(--gold-text); font-weight: 500; margin-bottom: 1.3rem; }
.hero__title { font-family: var(--serif); font-weight: 600; font-size: clamp(2.7rem, 8vw, 5rem); line-height: 1.02; color: var(--maroon); letter-spacing: .01em; }
.hero__title em { font-style: italic; color: var(--rose); }
.hero__desc { margin: 1.6rem auto 2.2rem; max-width: 600px; font-size: 1.08rem; color: #5c4c51; }
.hero__desc strong { color: var(--maroon); font-weight: 600; }
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__badges { list-style: none; display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 2.6rem; }
.hero__badges li { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--maroon); position: relative; padding-left: 1.3rem; }
.hero__badges li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* ===== Sections ===== */
.section { padding: clamp(3.5rem, 9vw, 6rem) 0; }
.section--soft { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .3em; font-size: .72rem; color: var(--gold-text); font-weight: 500; margin-bottom: .8rem; }
.section__title { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 5vw, 3rem); color: var(--maroon); line-height: 1.1; }
.section__lead { margin-top: .9rem; color: var(--muted); font-size: 1.05rem; }

/* ===== About ===== */
.about { display: grid; grid-template-columns: 1.4fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__text .section__title { text-align: left; margin-bottom: 1.4rem; }
.about__text p { color: #5c4c51; margin-bottom: 1rem; }
.about__text strong { color: var(--maroon); font-weight: 600; }
.about__stats { display: grid; gap: 1rem; }
.stat {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.8rem; box-shadow: var(--shadow); text-align: center;
}
.stat__num { display: block; font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--rose); line-height: 1; }
.stat__lbl { display: block; margin-top: .4rem; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ===== Filter ===== */
.filter { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; }
.filter__btn {
  font-family: var(--sans); font-size: .9rem; font-weight: 400;
  padding: .6em 1.3em; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--white); color: var(--ink); cursor: pointer; transition: .2s;
}
.filter__btn:hover { border-color: var(--rose-soft); color: var(--maroon); }
.filter__btn.is-active { background: var(--maroon); border-color: var(--maroon); color: #fff; }

/* ===== Product grid ===== */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 1.4rem; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 12px 30px -26px rgba(110,31,58,.5);
  transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__ph {
  position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: .2rem;
  text-align: center; padding: 1rem;
  background: linear-gradient(150deg, var(--cream-2), var(--nude));
}
.card__ph-init { font-family: var(--serif); font-size: 3.4rem; font-weight: 700; line-height: 1; color: var(--rose); opacity: .5; }
.card__ph-brand { font-family: var(--sans); font-size: .7rem; letter-spacing: .4em; color: var(--maroon); opacity: .55; }
/* Warna placeholder berbeda tiap kategori */
.card[data-kategori="bra"] .card__ph { background: linear-gradient(150deg, #fbe9ee, #efd0da); }
.card[data-kategori="panty"] .card__ph { background: linear-gradient(150deg, #fdeede, #f2d9c2); }
.card[data-kategori="korset"] .card__ph { background: linear-gradient(150deg, #f4e7f1, #e2cbe0); }
.card[data-kategori="torso"] .card__ph { background: linear-gradient(150deg, #eae7f6, #d3cdec); }
.card[data-kategori="girdle"] .card__ph { background: linear-gradient(150deg, #e7f0f4, #cbdde6); }
.card[data-kategori="sport"] .card__ph { background: linear-gradient(150deg, #e6f4ec, #c8e3d3); }
.card[data-kategori="menswear"] .card__ph { background: linear-gradient(150deg, #eaeef2, #cfd8e0); }
.card[data-kategori="menswear"] .card__ph-init { color: #4a5a6b; }
.card[data-kategori="sport"] .card__ph-init { color: #3f7a5c; }
.card__body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.card__type { font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; color: var(--gold-text); }
.card__name { font-family: var(--serif); font-size: 1.28rem; font-weight: 600; color: var(--ink); line-height: 1.15; }
.card__wa {
  margin-top: auto; padding-top: .8rem; display: inline-flex; align-items: center; gap: .4em;
  font-size: .85rem; font-weight: 500; color: var(--maroon);
}
.card__wa::before { content: "›"; font-size: 1.1em; color: var(--gold-d); transition: transform .2s ease; }
.card__wa:hover { color: var(--rose); }
.card__wa:hover::before { transform: translateX(3px); }

.produk__note { text-align: center; color: var(--muted); margin: 3rem auto 1.5rem; max-width: 560px; }
.produk__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== Perks ===== */
.perks { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.perk {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; transition: transform .2s ease, box-shadow .2s ease;
}
.perk:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.perk__ic { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--cream-2); color: var(--gold-d); font-size: 1.1rem; margin-bottom: 1rem; }
.perk h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--maroon); margin-bottom: .4rem; }
.perk p { color: #6a595e; font-size: .95rem; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.4rem; margin-bottom: 3rem; }
.step { text-align: center; padding: 1.5rem; }
.step__no { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  background: var(--maroon); color: #fff; font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.step h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--maroon); margin-bottom: .3rem; }
.step p { color: #6a595e; font-size: .95rem; }

/* ===== Rekening ===== */
.rekening {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.8rem, 5vw, 3rem); max-width: 720px; margin-inline: auto; text-align: center; box-shadow: var(--shadow);
}
.rekening__title { font-family: var(--serif); font-size: 1.7rem; color: var(--maroon); font-weight: 600; }
.rekening__owner { color: var(--muted); margin-top: .3rem; }
.rekening__owner strong { color: var(--ink); font-weight: 600; }
.rekening__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin: 1.8rem 0 1.2rem; }
.bank {
  border: 1.5px solid var(--line); border-radius: 14px; padding: 1.3rem 1.4rem;
  display: flex; align-items: center; gap: .9rem; background: var(--cream);
}
.bank__logo { font-weight: 700; font-size: 1.1rem; letter-spacing: .05em; color: #fff; background: #0060af;
  padding: .35em .7em; border-radius: 8px; }
.bank__logo--bni { background: #ec6425; }
.bank__no { font-size: 1.2rem; font-weight: 500; letter-spacing: .08em; flex: 1; text-align: left; }
.bank__copy { border: 1.5px solid var(--maroon); color: var(--maroon); background: transparent; border-radius: 999px;
  padding: .45em 1em; font-family: var(--sans); font-size: .82rem; cursor: pointer; transition: .2s; }
.bank__copy:hover { background: var(--maroon); color: #fff; }
.bank__copy.copied { background: var(--gold); border-color: var(--gold); color: #fff; }
.rekening__hint { color: var(--muted); font-size: .9rem; }

/* ===== Socials ===== */
.socials { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.3rem; }
.social {
  border-radius: var(--radius); padding: 1.8rem; color: #fff; display: flex; flex-direction: column; gap: .3rem;
  transition: transform .2s ease, box-shadow .2s ease; box-shadow: var(--shadow);
}
.social:hover { transform: translateY(-4px); }
.social__ic { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }
.social__handle { font-size: .92rem; opacity: .9; }
.social--ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.social--tt { background: linear-gradient(135deg, #010101, #25f4ee 120%); }
.social--sh { background: linear-gradient(135deg, #ee4d2d, #ff7337); }

/* ===== Footer ===== */
.footer { background: var(--maroon-d); color: #f3dfe4; padding-top: 3rem; }
.footer__inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 2.5rem; }
.footer .brand__name { color: #fff; }
.footer .brand__sub { color: var(--gold); }
.footer__tag { margin-top: .8rem; font-size: .92rem; opacity: .8; max-width: 300px; }
.footer__links { display: flex; gap: 1.6rem; flex-wrap: wrap; align-items: center; }
.footer__links a { font-size: .92rem; opacity: .85; transition: .2s; }
.footer__links a:hover { opacity: 1; color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.3rem 0; }
.footer__bottom p { font-size: .82rem; opacity: .7; text-align: center; }

/* ===== FAB ===== */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 40; color: #fff;
  padding: .85em 1.3em; border-radius: 999px; font-size: .9rem; font-weight: 500;
  transition: transform .2s ease;
}
.fab::before { content: ""; display: inline-block; width: 1.1em; height: 1.1em; margin-right: .5em;
  vertical-align: -.15em; background: #fff; -webkit-mask: center/contain no-repeat; mask: center/contain no-repeat; }
.fab--wa { background: #25d366; box-shadow: 0 12px 28px -8px rgba(37,211,102,.7); }
.fab--wa::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 0 0-8.5 15.2L2 22l4.9-1.4A10 10 0 1 0 12 2zm5.3 14.1c-.2.6-1.3 1.2-1.8 1.2-.5.1-1 .1-3.2-.7-2.7-1.1-4.4-3.8-4.5-4-.1-.2-1.1-1.4-1.1-2.7s.7-1.9.9-2.1c.2-.2.5-.3.7-.3h.5c.2 0 .4 0 .6.5l.8 1.9c.1.2.1.4 0 .5l-.4.6c-.1.2-.3.3-.1.6.1.3.7 1.1 1.4 1.7.9.8 1.6 1 1.9 1.2.2.1.4.1.6-.1l.7-.8c.2-.2.3-.2.6-.1l1.8.9c.2.1.4.2.5.3.1.2.1.6-.1 1.2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 0 0-8.5 15.2L2 22l4.9-1.4A10 10 0 1 0 12 2zm5.3 14.1c-.2.6-1.3 1.2-1.8 1.2-.5.1-1 .1-3.2-.7-2.7-1.1-4.4-3.8-4.5-4-.1-.2-1.1-1.4-1.1-2.7s.7-1.9.9-2.1c.2-.2.5-.3.7-.3h.5c.2 0 .4 0 .6.5l.8 1.9c.1.2.1.4 0 .5l-.4.6c-.1.2-.3.3-.1.6.1.3.7 1.1 1.4 1.7.9.8 1.6 1 1.9 1.2.2.1.4.1.6-.1l.7-.8c.2-.2.3-.2.6-.1l1.8.9c.2.1.4.2.5.3.1.2.1.6-.1 1.2z'/%3E%3C/svg%3E"); }
.fab--ig { background: linear-gradient(135deg, #dd2a7b, #8134af); box-shadow: 0 12px 28px -8px rgba(129,52,175,.6); }
.fab:hover { transform: translateY(-3px) scale(1.03); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Panduan ukuran ===== */
.sizeguide { margin-top: 3.5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: 0 12px 30px -26px rgba(110,31,58,.5); }
.sizeguide__title { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--maroon); text-align: center; }
.sizeguide__lead { text-align: center; color: #6a595e; margin: .5rem auto 1.6rem; max-width: 560px; }
.sizeguide__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.sizecard { background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 1.3rem 1.4rem; }
.sizecard h4 { font-family: var(--serif); font-size: 1.25rem; color: var(--maroon); margin-bottom: .4rem; }
.sizecard p { color: #6a595e; font-size: .93rem; }
.sizecard strong { color: var(--ink); font-weight: 600; }
.sizeguide__hint { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 1.4rem; }

/* ===== Dua jalur pesan ===== */
.order { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; max-width: 860px; margin: 0 auto 2.5rem; }
.order__card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: 0 12px 30px -26px rgba(110,31,58,.5); }
.order__card--primary { border-color: var(--rose-soft); box-shadow: var(--shadow); }
.order__tag { display: inline-block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--maroon); background: var(--cream-2); padding: .4em .9em; border-radius: 999px; margin-bottom: .9rem; }
.order__tag--soft { color: var(--gold-text); }
.order__card h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--maroon); font-weight: 600; margin-bottom: .5rem; }
.order__card > p { color: #6a595e; margin-bottom: 1.2rem; }
.order__steps { list-style: none; counter-reset: s; display: grid; gap: .7rem; }
.order__steps li { counter-increment: s; position: relative; padding-left: 2.4rem; color: #5c4c51; font-size: .95rem; }
.order__steps li::before { content: counter(s); position: absolute; left: 0; top: -.15em; width: 1.7rem; height: 1.7rem; display: grid; place-items: center; background: var(--maroon); color: #fff; border-radius: 50%; font-size: .8rem; font-weight: 600; }

/* ===== Badge rekening ===== */
.rekening__badge { display: inline-block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--gold-text); background: var(--cream-2); padding: .4em .9em; border-radius: 999px; margin-bottom: .8rem; }

/* ===== FAQ ===== */
.faq { max-width: 760px; margin-inline: auto; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: 14px; margin-bottom: .9rem; overflow: hidden; }
.faq__item summary { cursor: pointer; padding: 1.1rem 3rem 1.1rem 1.3rem; font-family: var(--serif); font-size: 1.2rem; color: var(--maroon); font-weight: 600; list-style: none; position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--gold-d); transition: transform .2s ease; }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 1.3rem 1.2rem; color: #6a595e; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: repeat(3, 1fr); }
  .nav__links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 1rem 6%; transform: translateY(-140%); transition: transform .35s ease; align-items: stretch;
    max-height: calc(100dvh - 72px); overflow-y: auto;
  }
  .nav__links.open { transform: translateY(0); box-shadow: var(--shadow); }
  .nav__links a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav__links a.btn { margin-top: .8rem; border-bottom: 0; }
  .nav__toggle { display: flex; }
}
@media (max-width: 720px) {
  .about__stats { grid-template-columns: 1fr; }
  .filter__btn { min-height: 44px; }
  .bank__copy { min-height: 44px; }
  .card__wa { min-height: 44px; }
  .nav__toggle { padding: 10px; }
  .footer__bottom { padding-bottom: 5rem; }
}
@media (max-width: 480px) {
  .bank { flex-direction: column; align-items: stretch; text-align: center; gap: .6rem; padding: 1.1rem 1rem; }
  .bank__no { text-align: center; overflow-wrap: anywhere; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
