/* Aurora Boutique Hotel — Archetype "Glass Dark" + thematic AURORA-GLOW
   Graphite #11141a · glass cards · cyan-teal accent + warm gold glow · Sora + Inter
   Bespoke palette derived from the hotel's blue-mosaic pool + lantern-gold night dining. */
:root {
  --bg: #11141a;
  --bg2: #161b24;
  --bg3: #0c0f15;
  --cyan: #34d3c6;        /* teal-cyan — the mosaic pool */
  --cyan-deep: #1aa79a;
  --cyan-soft: #7ce8df;
  --gold: #e3b873;        /* warm lantern gold — Aurora By Night */
  --gold-deep: #c79a52;
  --ink: #10151c;
  --paper: #f5f7fa;
  --muted: #5d6b7c;
  --glass: rgba(255,255,255,.065);
  --glass-2: rgba(255,255,255,.09);
  --glass-line: rgba(255,255,255,.16);
  --line: #e3e8ee;
  --wa: #1daa50;
  --wa-dark: #168a40;
  --radius: 18px;
  --display: "Sora", system-ui, sans-serif;
  --sans: "Inter", system-ui, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: #fff; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); line-height: 1.12; font-weight: 700; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: -.015em; }
.kicker { font-weight: 700; font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--cyan-deep); margin-bottom: .9rem; }
.kicker--gold { color: var(--gold); }
.kicker--cyan { color: var(--cyan); }

/* Topbar */
.topbar { background: var(--bg3); color: #c2ccd8; font-size: .8rem; display: flex; justify-content: center; gap: 1.4rem; flex-wrap: wrap; padding: .5rem 1rem; }
.topbar__right { display: flex; gap: .7rem; align-items: center; }
.topbar__right a { font-weight: 600; color: var(--cyan); }
.topbar__sep { opacity: .4; }
.topbar [data-i18n="top.rating"] { color: var(--gold); font-weight: 600; }

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: rgba(17,20,26,.88); border-bottom: 1px solid rgba(255,255,255,.07); }
@media (min-width: 901px) { .header { backdrop-filter: blur(12px); } }
.header__in { max-width: 1200px; margin: 0 auto; padding: .55rem 1.25rem; display: flex; align-items: center; gap: 1.25rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand__logo { height: 50px; width: auto; }
.brand__name { font: 700 1.25rem var(--display); color: #fff; line-height: 1; letter-spacing: .14em; }
.brand__name small { display: block; font: 500 .54rem var(--sans); letter-spacing: .26em; text-transform: uppercase; color: var(--cyan); margin-top: .28rem; }
.nav { display: flex; gap: 1.4rem; font-weight: 500; font-size: .92rem; margin-left: auto; color: #d3dce6; }
.nav a:hover { color: var(--cyan); }
.header__actions { display: flex; align-items: center; gap: .8rem; }
.lang { display: flex; border: 1.5px solid rgba(255,255,255,.18); border-radius: 9px; overflow: hidden; }
.lang__btn { border: 0; background: transparent; font: 600 .76rem var(--sans); padding: .35rem .55rem; cursor: pointer; color: #a7b5c4; }
.lang__btn.is-active { background: var(--cyan); color: #06201d; }
.nav-toggle { display: none; border: 0; background: none; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 22px; height: 2.5px; background: #fff; margin: 4.5px 0; border-radius: 2px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font: 600 .95rem var(--sans); padding: .72rem 1.4rem; border-radius: 999px; transition: transform .12s, background .15s, color .15s, box-shadow .2s; white-space: nowrap; }
.btn:active { transform: scale(.97); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-dark); }
.btn--gold { background: var(--gold); color: #221700; box-shadow: 0 8px 26px rgba(227,184,115,.28); }
.btn--gold:hover { background: #efc886; }
.btn--cyan { background: var(--cyan); color: #042220; box-shadow: 0 8px 26px rgba(52,211,198,.25); }
.btn--cyan:hover { background: var(--cyan-soft); }
.btn--ghost { border: 1.5px solid currentColor; background: transparent; }
.btn--ghost:hover { background: currentColor; }
.btn--ghost:hover span { color: var(--bg); }
.btn--block { width: 100%; }
.btn--lg { padding: .98rem 1.8rem; font-size: 1.05rem; }

/* Hero */
.hero { position: relative; min-height: 96vh; display: flex; align-items: center; overflow: hidden; background: var(--bg); }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 28s ease-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.16) translate(-1.5%, -1%); } }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(100deg, rgba(9,11,16,.9) 0%, rgba(9,11,16,.58) 46%, rgba(26,167,154,.16) 100%),
  linear-gradient(0deg, rgba(9,11,16,.78), rgba(0,0,0,0) 52%); }
.hero__in { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 5rem 1.25rem; width: 100%; display: grid; grid-template-columns: 1.25fr .75fr; gap: 2.5rem; align-items: center; }
.hero__copy { color: #fff; }
.hero .kicker { color: var(--gold); }
.hero__title { font-size: clamp(2.3rem, 5.6vw, 4rem); color: #fff; font-weight: 800; letter-spacing: -.02em; }
.hero__title em { font-style: normal; color: var(--cyan); }
.hero__sub { margin-top: 1.2rem; max-width: 32rem; font-size: 1.06rem; color: #d3dce7; }
.hero__chips { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero__chips span { border: 1px solid var(--glass-line); background: var(--glass-2); border-radius: 999px; padding: .42rem .95rem; font-size: .8rem; font-weight: 600; color: #eaf3f1; }
@media (min-width: 901px) { .hero__chips span { backdrop-filter: blur(6px); } }

/* Glass card / rate calc */
.glass { background: var(--glass-2); border: 1px solid var(--glass-line); box-shadow: 0 26px 64px rgba(0,0,0,.5); }
@media (min-width: 901px) { .glass { backdrop-filter: blur(18px); } }
.rcalc { border-radius: var(--radius); padding: 1.15rem 1.2rem; color: #fff; }
.rcalc__title { font-family: var(--display); font-size: 1.1rem; font-weight: 700; margin-bottom: .7rem; }
.rcalc label { display: block; font-size: .72rem; font-weight: 600; color: #c7d3df; margin-bottom: .55rem; }
.rcalc label span { display: block; margin-bottom: .2rem; }
.rcalc select, .rcalc input[type=number] { width: 100%; padding: .5rem .6rem; border: 1px solid var(--glass-line); border-radius: 9px; font: 500 .88rem var(--sans); color: #fff; background: rgba(9,12,18,.6); }
.rcalc select option { color: #10151c; }
.rcalc__row { margin-bottom: .15rem; }
.rcalc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.rcalc__check { display: flex !important; flex-direction: row; align-items: center; gap: .45rem; font-size: .82rem; font-weight: 500 !important; color: #eaf3f1 !important; cursor: pointer; margin-bottom: .3rem; }
.rcalc__check input { width: auto; }
.rcalc__check span { margin: 0 !important; }
.rcalc__total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--glass-line); margin: .35rem 0 .65rem; padding-top: .6rem; }
.rcalc__total span { font-size: .82rem; color: #c7d3df; font-weight: 600; }
.rcalc__total strong { font-family: var(--display); font-size: 1.5rem; color: var(--cyan); text-shadow: 0 0 22px rgba(52,211,198,.4); }
.rcalc .btn { padding: .68rem 1.2rem; }
.rcalc__note { font-size: .68rem; color: #a7b5c4; margin-top: .55rem; text-align: center; line-height: 1.4; }

/* Intro */
.intro { max-width: 920px; margin: 0 auto; padding: clamp(3rem, 7vw, 4.8rem) 1.25rem; text-align: center; }
.intro__h { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 1.4rem; }
.intro__stats { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 2.6rem; }
.intro__stats strong { display: block; font-family: var(--display); font-size: 2.1rem; color: var(--cyan-deep); letter-spacing: -.01em; }
.intro__stats span { font-size: .85rem; color: var(--muted); }

/* Sections */
.section { max-width: 1200px; margin: 0 auto; padding: clamp(2.8rem, 6.5vw, 4.8rem) 1.25rem; }
.section--night { max-width: none; background: var(--bg); color: #e6edf5; }
.section--night > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section__head { text-align: center; max-width: 46rem; margin: 0 auto 2.5rem; }
.section__head p:last-child { color: var(--muted); margin-top: .65rem; }
.section__head--light h2 { color: #fff; }
.section--night .section__head p:last-child { color: #9eafc0; }

/* Aurora By Night dining feature */
.dining { background: linear-gradient(135deg, var(--bg), var(--bg2)); color: #e6edf5; }
.dining__in { max-width: 1200px; margin: 0 auto; padding: clamp(3rem, 7vw, 5.2rem) 1.25rem; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.dining h2 { color: #fff; margin-bottom: 1.1rem; }
.dining__copy > p { color: #c4d0dd; max-width: 37rem; }
.dining__list { list-style: none; margin: 1.5rem 0; display: grid; gap: .6rem; }
.dining__list li { padding-left: 1.7rem; position: relative; font-weight: 500; }
.dining__list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px rgba(227,184,115,.7); }
.dining__media img { border-radius: var(--radius); border: 1px solid var(--glass-line); box-shadow: 0 26px 64px rgba(0,0,0,.5); aspect-ratio: 3/2; object-fit: cover; }

/* Rooms */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.room { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 32px rgba(16,21,28,.07); }
.room > img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.room__body { padding: 1.35rem 1.45rem 1.5rem; }
.room__body h3 { font-size: 1.25rem; margin-bottom: .45rem; }
.room__body > p { color: var(--muted); font-size: .9rem; }
.room__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.1rem; }
.room__price { font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: var(--cyan-deep); }
.room__price span { font-family: var(--sans); font-weight: 400; font-size: .75rem; color: var(--muted); }
.room .btn--ghost { color: var(--cyan-deep); }

/* Resort gallery */
.resort { background: var(--bg); color: #e6edf5; padding: clamp(2.8rem, 6.5vw, 4.8rem) 0; }
.resort .section__head { padding: 0 1.25rem; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; padding: 0 1.25rem; max-width: 1340px; margin: 0 auto; position: relative; z-index: 1; }
.g { border-radius: 14px; overflow: hidden; }
.g img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.g:hover img { transform: scale(1.07); }
.g--wide { grid-column: span 2; grid-row: span 2; }

/* Owners */
.owners-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2.6rem; align-items: center; }
.owners__photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 14px 40px rgba(16,21,28,.12); }
.owners__photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.owners__info h2 { margin-bottom: 1rem; }
.owners__info > p { color: var(--muted); margin-bottom: 1.5rem; max-width: 34rem; }

/* Experiences */
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }
.exp { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.4rem; text-align: center; }
.exp__ic { display: inline-flex; width: 52px; height: 52px; align-items: center; justify-content: center; border-radius: 14px; margin-bottom: .8rem; color: var(--cyan-deep); background: rgba(52,211,198,.1); border: 1px solid rgba(52,211,198,.22); }
.exp h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.exp p { font-size: .88rem; color: var(--muted); }

/* Reviews */
.rating-badge { display: inline-flex; align-items: center; gap: .6rem; background: var(--glass-2); border: 1px solid var(--glass-line); color: #fff; border-radius: 999px; padding: .48rem 1.15rem; margin-bottom: 1rem; }
.rating-badge strong { color: var(--gold); font-family: var(--display); }
.rating-badge span { font-size: .82rem; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.rev { background: var(--glass-2); border: 1px solid var(--glass-line); border-radius: var(--radius); padding: 1.6rem; }
@media (min-width: 901px) { .rev { backdrop-filter: blur(8px); } }
.rev blockquote { font-size: 1.02rem; color: #eef3f8; }
.rev figcaption { margin-top: .85rem; font-size: .82rem; font-weight: 600; color: var(--cyan); }

/* Location */
.visit-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.6rem; align-items: center; }
.visit__photo img { border-radius: var(--radius); aspect-ratio: 16/9; object-fit: cover; }
.visit__info h2 { margin-bottom: 1rem; }
.visit__info > p { color: var(--muted); margin-bottom: 1.5rem; max-width: 31rem; }
.visit__cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.visit__cta .btn--ghost { color: var(--cyan-deep); }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--bg3), var(--bg2)); color: #eef3f8; text-align: center; padding: clamp(3rem, 7vw, 4.8rem) 1.25rem; }
.cta-band h2 { color: #fff; margin-bottom: .65rem; }
.cta-band p { color: #b8c4d2; margin-bottom: 1.7rem; }

/* Footer */
.footer { background: var(--bg3); color: #9eafc0; font-size: .9rem; }
.footer__in { max-width: 1200px; margin: 0 auto; padding: 3rem 1.25rem 2rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
.footer__brand { font: 700 1.4rem var(--display); color: #fff; margin-bottom: .6rem; letter-spacing: .12em; }
.footer__brand small { font: 500 .68rem var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--cyan); }
.footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .7rem; font-family: var(--sans); }
.footer a { color: var(--cyan); }
.footer a:hover { text-decoration: underline; }
.footer__legal { border-top: 1px solid rgba(255,255,255,.1); max-width: 1200px; margin: 0 auto; padding: 1.1rem 1.25rem 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .78rem; color: #69788a; }
.footer__demo { font-style: italic; }

/* FAB */
.wa-fab { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 60; width: 56px; height: 56px; border-radius: 50%; background: var(--wa); color: #fff; display: none; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(0,0,0,.35); }

/* Responsive */
@media (max-width: 980px) {
  .hero__in, .dining__in, .visit-grid, .owners-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero__in { padding: 4rem 1.25rem; }
  .owners__photo { max-width: 420px; }
  .rooms-grid, .exp-grid { grid-template-columns: 1fr 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .g--wide { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 720px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid rgba(255,255,255,.1); flex-direction: column; gap: 0; padding: .5rem 0; }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem 1.5rem; border-top: 1px solid rgba(255,255,255,.08); }
  .nav-toggle { display: block; }
  .header__actions .btn--wa { display: none; }
  .topbar { font-size: .72rem; gap: .5rem; }
  .rooms-grid, .exp-grid { grid-template-columns: 1fr; }
  .intro__stats { gap: 1.6rem; }
  .wa-fab { display: flex; }
}
@media (max-width: 460px) { .footer__in { grid-template-columns: 1fr; } .intro__stats { gap: 1.3rem 1.8rem; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__media img { animation: none; }
  .btn, .g img { transition: none; }
}
.save-data .hero__media img { animation: none; }

/* ===== WOW EFFECTS ===== */
/* scroll progress bar — aurora gradient */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 60;
  background: linear-gradient(90deg, var(--cyan), var(--gold)); transition: width .1s linear; }
/* scroll-reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
/* hero accent-word shimmer */
.hero__title em { background: linear-gradient(100deg, var(--cyan) 28%, #e9fffb 50%, var(--cyan) 72%);
  background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 5.5s linear infinite; }
@keyframes shimmer { to { background-position: -220% 0; } }
/* cursor spotlight on dark dining band */
.spot { position: relative; }
.spot::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(420px circle at var(--mx, 35%) var(--my, 35%), rgba(52,211,198,.16), transparent 60%);
  transition: background .15s ease; }
.spot > * { position: relative; z-index: 1; }
/* AURORA glow — animated, behind dark bands (thematic to the name) */
.aurora { position: relative; overflow: hidden; }
.aurora::before { content: ""; position: absolute; inset: -45%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(42% 38% at 18% 26%, rgba(52,211,198,.22), transparent 62%),
    radial-gradient(40% 36% at 82% 30%, rgba(124,232,223,.14), transparent 62%),
    radial-gradient(46% 40% at 60% 78%, rgba(227,184,115,.16), transparent 64%);
  filter: blur(8px);
  animation: aurora 16s ease-in-out infinite alternate; }
.aurora > * { position: relative; z-index: 1; }
@keyframes aurora {
  0%   { transform: translate(-5%, -4%) scale(1) rotate(0deg); opacity: .85; }
  50%  { opacity: 1; }
  100% { transform: translate(5%, 4%) scale(1.14) rotate(4deg); opacity: .9; }
}
.hero.aurora::before { mix-blend-mode: screen; }
/* stats pop */
.intro__stats strong { transition: transform .5s ease; }
.intro__stats.in strong { animation: pop .6s ease; }
@keyframes pop { 0% { transform: scale(.6); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
/* card lift */
.card { transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-7px); box-shadow: 0 24px 54px rgba(16,21,28,.2); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__title em { animation: none; -webkit-text-fill-color: var(--cyan); }
  .aurora::before, .intro__stats.in strong { animation: none; }
}
.save-data .aurora::before { animation: none; }

/* ===== Trust marquee ===== */
.trust { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.7rem 0; overflow: hidden; }
.trust__label { text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.trust__viewport { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.trust__track { display: flex; gap: 2.6rem; width: max-content; flex-wrap: wrap; justify-content: center; }
.trust__item { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .92rem; color: var(--ink); white-space: nowrap; }
.trust__item svg { color: var(--cyan-deep); flex: none; }
@media (min-width: 901px) {
  .trust__track { flex-wrap: nowrap; animation: trust-scroll 34s linear infinite; }
  .trust:hover .trust__track { animation-play-state: paused; }
}
@keyframes trust-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .trust__track { animation: none !important; flex-wrap: wrap; } }
.save-data .trust__track { animation: none !important; flex-wrap: wrap; }

/* ===== FAQ accordion ===== */
.faq__list { max-width: 51rem; margin: 0 auto; display: grid; gap: .75rem; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 6px 22px rgba(16,21,28,.05); overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.08rem 1.35rem; font-family: var(--display); font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--cyan-deep); }
.faq__mark { position: relative; flex: none; width: 18px; height: 18px; }
.faq__mark::before, .faq__mark::after { content: ""; position: absolute; background: var(--cyan-deep); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.faq__mark::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq__mark::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__item[open] .faq__mark::after { transform: rotate(90deg); opacity: 0; }
.faq__item > p { padding: 0 1.35rem 1.2rem; margin: 0; color: var(--muted); font-size: .94rem; max-width: 45rem; }
@media (prefers-reduced-motion: reduce) { .faq__mark::before, .faq__mark::after { transition: none; } }
