/* =========================================================
   오감자 — 다크 럭셔리 유흥 라운지 디자인 시스템
   ========================================================= */
:root {
  --bg: #0a090e;
  --bg-2: #100e16;
  --surface: #16131e;
  --surface-2: #1d1926;
  --line: rgba(255, 255, 255, .10);
  --line-strong: rgba(255, 45, 154, .45);
  --ink: #f4f1f8;
  --ink-soft: #d8d3e0;
  --muted: #a39db0;
  --faint: #726c80;
  /* 네온 핑크 액센트 (변수명은 호환 유지) */
  --gold: #ff2d9a;
  --gold-soft: #ff6ec0;
  --neon: #ff2d9a;
  --neon-2: #c026d3;
  --rose: #ff4d8d;
  --violet: #8b5cff;
  --neon-glow: 0 0 18px rgba(255, 45, 154, .55);
  --plum: #190a1f;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-md: 0 16px 40px rgba(0, 0, 0, .45);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, .6);
  --maxw: 1180px;
  --font: "Pretendard", "Pretendard Variable", -apple-system, BlinkMacSystemFont,
    "Apple SD Gothic Neo", "Malgun Gothic", "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, p, ul { margin: 0; word-break: keep-all; overflow-wrap: anywhere; }
ul { padding: 0; list-style: none; }
::selection { background: var(--gold); color: #1a1305; }

.wrap { width: min(var(--maxw), calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--gold); }
.gold-text { color: var(--gold); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 9, 14, .72);
  backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 22px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 18px; letter-spacing: -.01em; color: #fff; }
.brand .dot {
  width: 34px; height: 34px; border-radius: 10px; flex: none; position: relative;
  background: linear-gradient(135deg, var(--gold), #a8801f);
  box-shadow: 0 6px 18px rgba(212, 175, 55, .35);
}
.brand .dot::after { content: "\266A"; position: absolute; inset: 0; display: grid; place-items: center; color: #1a1305; font-size: 16px; font-weight: 900; }
.brand small { display: block; font-size: 11px; font-weight: 600; letter-spacing: .12em; color: var(--gold); margin-top: 1px; }
.nav-spacer { flex: 1; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 10px;
  font-size: 15px; font-weight: 600; color: var(--ink-soft);
  transition: background .15s, color .15s;
}
.nav-link:hover, .nav-link:focus-visible { background: var(--surface-2); color: #fff; }
.nav-link[aria-current="page"] { color: var(--gold); }
.caret { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform .2s; opacity: .6; }

.has-menu { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: min(760px, 92vw);
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 18px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 16px;
}
.has-menu:hover .dropdown, .has-menu:focus-within .dropdown, .dropdown.open {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.has-menu:hover .caret, .has-menu:focus-within .caret { transform: rotate(-135deg) translateY(-1px); }
.dd-group { padding: 6px; }
.dd-title { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 800; letter-spacing: .08em; color: var(--gold); text-transform: uppercase; margin-bottom: 6px; padding: 0 8px; }
.dd-title::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.dd-link { display: block; padding: 9px 10px; border-radius: 10px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); transition: background .14s, color .14s; }
.dd-link:hover { background: var(--surface-2); color: var(--gold); }
.dd-link small { display: block; font-size: 12px; font-weight: 500; color: var(--faint); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 22px; border-radius: 999px;
  font-weight: 700; font-size: 15px; white-space: nowrap; cursor: pointer;
  border: 1px solid transparent; transition: transform .12s, box-shadow .15s, background .15s, color .15s;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #1a1305; box-shadow: 0 10px 26px rgba(212, 175, 55, .3); }
.btn-gold:hover { box-shadow: 0 14px 32px rgba(212, 175, 55, .45); }
.btn-outline { background: transparent; color: var(--gold); border-color: rgba(212, 175, 55, .5); }
.btn-outline:hover { background: rgba(212, 175, 55, .1); }
.btn-ghost { background: var(--surface-2); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: #262031; }

.nav-cta { display: inline-flex; }
.hamburger { display: none; width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: 12px; background: var(--surface); cursor: pointer; align-items: center; justify-content: center; }
.hamburger span, .hamburger span::before, .hamburger span::after { content: ""; display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; }
.hamburger span::before { position: absolute; top: -6px; }
.hamburger span::after { position: absolute; top: 6px; }

.mobile-panel { position: fixed; inset: 0 0 0 auto; width: min(380px, 86vw); z-index: 60; background: var(--surface); border-left: 1px solid var(--line); box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1); padding: 20px; overflow-y: auto; }
.mobile-panel.open { transform: translateX(0); }
.mobile-backdrop { position: fixed; inset: 0; z-index: 55; background: rgba(0, 0, 0, .6); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.mobile-backdrop.open { opacity: 1; visibility: visible; }
.mp-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; color: #fff; }
.mp-close { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface-2); color: var(--ink); font-size: 20px; cursor: pointer; }
.mp-group-title { font-size: 11px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; margin: 18px 0 4px; }
.mp-link { display: block; padding: 11px 12px; border-radius: 10px; font-weight: 600; color: var(--ink-soft); }
.mp-link:hover { background: var(--surface-2); }
.mp-cta { margin-top: 22px; width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--plum); color: #fff; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .9; transform: scale(1.04); }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 100% at 80% 0%, rgba(212,175,55,.14), transparent 55%),
    linear-gradient(90deg, rgba(8,7,12,.92) 0%, rgba(8,7,12,.74) 45%, rgba(8,7,12,.4) 100%),
    linear-gradient(0deg, rgba(8,7,12,.92), rgba(8,7,12,.15));
}
.hero-inner { position: relative; z-index: 2; padding: clamp(74px, 12vw, 150px) 0 clamp(60px, 9vw, 110px); }
.hero .wrap { max-width: 920px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 22px; }
.crumbs a:hover { color: var(--gold); }
.crumbs span { opacity: .4; }
.hero h1 { font-size: clamp(36px, 6.2vw, 66px); line-height: 1.08; letter-spacing: -.025em; margin: 16px 0 0; font-weight: 800; }
.hero h1 .gold-text { background: linear-gradient(120deg, var(--gold-soft), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .lead { margin-top: 22px; font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.82); max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.tag { font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(212,175,55,.28); color: var(--gold-soft); }
.hero-quick { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-quick .q b { display: block; font-size: 15px; color: #fff; font-weight: 700; }
.hero-quick .q span { font-size: 13px; color: rgba(255,255,255,.6); }

/* ---------- Sections ---------- */
.section { padding: clamp(58px, 8vw, 100px) 0; position: relative; }
.section.alt { background: var(--bg-2); }
.section-head { max-width: 760px; margin-bottom: 40px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(27px, 3.8vw, 42px); line-height: 1.16; letter-spacing: -.025em; font-weight: 800; margin-top: 16px; }
.section-head p { margin-top: 16px; font-size: 17px; color: var(--muted); }

.prose p + p { margin-top: 16px; }
.prose p { font-size: 17px; color: var(--ink-soft); }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card.compact { padding: 20px; }
.card.compact .ic { width: 34px; height: 34px; font-size: 15px; border-radius: 9px; margin-bottom: 11px; }
.card.compact h3 { font-size: 16px; margin-bottom: 6px; }
.card.compact p { font-size: 14px; line-height: 1.6; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .18s, box-shadow .18s, border-color .18s; }
.card.hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(212,175,55,.35); }
.card .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(212,175,55,.12); color: var(--gold); font-size: 19px; font-weight: 800; margin-bottom: 16px; }
.card h3 { font-size: 19px; letter-spacing: -.01em; margin-bottom: 8px; color: #fff; }
.card p { color: var(--muted); font-size: 15.5px; }

/* feature row */
.media-row { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.media-row.reverse { direction: rtl; }
.media-row.reverse > * { direction: ltr; }
.media-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line-strong); aspect-ratio: 4 / 3; background: var(--plum); position: relative; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,7,12,.5), transparent 60%); }

/* info grid */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.info-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 22px; }
.info-item dt { font-size: 12.5px; font-weight: 700; color: var(--gold); letter-spacing: .04em; }
.info-item dd { margin: 7px 0 0; font-size: 15.5px; color: var(--ink-soft); }

/* spec list */
.spec-list { display: grid; gap: 12px; margin-top: 22px; }
.spec-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink-soft); }
.spec-list li::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 7px;
  background: rgba(212,175,55,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat; }

/* persona */
.persona-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.persona { padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.persona h3 { font-size: 17px; margin-bottom: 14px; color: #fff; }
.persona ul { display: grid; gap: 10px; }
.persona li { position: relative; padding-left: 22px; color: var(--ink-soft); font-size: 15.5px; }
.persona li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.persona.con li::before { background: var(--rose); }

/* steps (이용 방법) */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 28px 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.step::before { counter-increment: step; content: "0" counter(step); display: block; font-size: 30px; font-weight: 800; letter-spacing: -.02em;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 12px; }
.step h3 { font-size: 17px; color: #fff; margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* room gallery */
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.room { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: flex-end; }
.room img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.room:hover img { transform: scale(1.06); }
.room::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,7,12,.92), rgba(8,7,12,.15) 60%, rgba(8,7,12,.45)); }
.room .room-body { position: relative; z-index: 2; padding: 24px; }
.room .grade { display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: .1em; color: #1a1305; background: linear-gradient(135deg, var(--gold-soft), var(--gold)); padding: 4px 11px; border-radius: 999px; }
.room h3 { color: #fff; font-size: 21px; margin: 14px 0 6px; }
.room p { color: rgba(255,255,255,.78); font-size: 14.5px; }
.room .cap { margin-top: 10px; font-size: 13px; color: var(--gold-soft); font-weight: 600; }

/* faq */
.faq { display: grid; gap: 12px; max-width: 840px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: border-color .15s; }
.faq details[open] { border-color: rgba(212,175,55,.4); }
.faq summary { list-style: none; cursor: pointer; padding: 21px 22px; font-weight: 700; font-size: 16.5px; color: #fff; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; font-weight: 300; color: var(--gold); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 22px 20px; color: var(--muted); font-size: 15.5px; }

/* area cards */
.area-pages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.area-card { display: block; border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--line); transition: transform .18s, box-shadow .18s, border-color .18s; }
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(212,175,55,.35); }
.area-card .thumb { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.area-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.area-card .thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,7,12,.7), transparent 55%); }
.area-card .body { padding: 18px 20px 22px; }
.area-card .kicker { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: .05em; }
.area-card h3 { font-size: 18px; margin: 7px 0 6px; color: #fff; }
.area-card p { color: var(--muted); font-size: 14.5px; }
.area-card .go { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-weight: 700; font-size: 14px; color: var(--gold); }

/* visit / 업장 정보 */
.visit { position: relative; overflow: hidden; }
.visit-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.visit::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 30%, rgba(10,9,14,.7)); }
.visit-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.visit-card { background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-md); }
.visit-card h3 { color: #fff; font-size: 22px; margin-bottom: 18px; }
.visit-list { display: grid; gap: 14px; }
.visit-list div { display: grid; grid-template-columns: 88px 1fr; gap: 12px; align-items: start; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.visit-list div:last-child { border-bottom: none; padding-bottom: 0; }
.visit-list dt { font-size: 13px; font-weight: 700; color: var(--gold); }
.visit-list dd { margin: 0; font-size: 15.5px; color: var(--ink-soft); }
.visit-list dd a { color: var(--gold-soft); font-weight: 700; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: var(--plum); color: #fff; }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(100% 120% at 50% 0%, rgba(212,175,55,.18), transparent 60%), linear-gradient(0deg, rgba(8,7,12,.85), rgba(8,7,12,.5)); }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: clamp(48px, 7vw, 80px) 0; }
.cta-inner h2 { font-size: clamp(26px, 3.6vw, 38px); letter-spacing: -.02em; }
.cta-inner p { margin-top: 12px; color: rgba(255,255,255,.78); font-size: 16px; }
.cta-phone { font-size: clamp(28px, 4.4vw, 44px); font-weight: 800; letter-spacing: -.01em; color: var(--gold); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* footer */
.site-footer { background: #07060a; color: var(--muted); padding: 60px 0 40px; font-size: 14.5px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.footer-brand { color: #fff; font-weight: 800; font-size: 18px; display: flex; align-items: center; gap: 11px; }
.footer-top p { margin-top: 16px; line-height: 1.7; max-width: 340px; }
.footer-biz { margin-top: 16px; font-size: 13px; color: var(--faint); line-height: 1.8; }
.footer-col h4 { color: var(--gold); font-size: 13px; letter-spacing: .06em; margin-bottom: 14px; text-transform: uppercase; }
.footer-col a { display: block; padding: 5px 0; color: var(--muted); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 13px; color: var(--faint); }

/* floating call */
.floating-call { position: fixed; right: 20px; bottom: 20px; z-index: 40; box-shadow: 0 14px 36px rgba(0,0,0,.5); }

/* stat row */
.stat-row { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 38px; }
.stat b { display: block; font-size: 30px; font-weight: 800; color: var(--gold); letter-spacing: -.02em; }
.stat span { font-size: 13.5px; color: rgba(255,255,255,.62); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .media-row { grid-template-columns: 1fr; gap: 28px; }
  .grid-3, .grid-4, .area-pages, .room-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: inline-flex; }
  .grid-2, .grid-3, .grid-4, .area-pages, .room-grid, .steps, .persona-grid, .info-grid, .footer-top, .visit-inner { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .visit-list div { grid-template-columns: 76px 1fr; }
}

/* ---------- 스크롤 고정 배경 (패럴랙스) ---------- */
html { background: #0a090e; }
body { background: transparent; }
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1;
  background: linear-gradient(rgba(10, 9, 14, .88), rgba(10, 9, 14, .93)),
              url("assets/mood-bar.jpg") center / cover no-repeat;
}
.section.alt { background: rgba(18, 14, 24, .55); }

/* ---------- 본문 가독성 (마침표 줄바꿈 + 넉넉한 행간) ---------- */
.prose p { line-height: 1.92; }
.info-item dd, .persona li, .faq .answer, .card p { line-height: 1.78; }

/* ---------- 반짝·통통 튀는 플로팅 전화 버튼 ---------- */
.floating-call {
  gap: 8px; padding: 0 20px; font-size: 14.5px;
  animation: fc-bounce 1.7s ease-in-out infinite, fc-glow 2.2s ease-in-out infinite;
}
.floating-call::before { content: "📞"; font-size: 16px; }
@keyframes fc-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes fc-glow {
  0%, 100% { box-shadow: 0 10px 24px rgba(255, 45, 154, .45); }
  50%      { box-shadow: 0 14px 42px rgba(255, 45, 154, .92); }
}
@media (prefers-reduced-motion: reduce) { .floating-call { animation: none; } }
@media (max-width: 520px) { .floating-call { right: 14px; bottom: 14px; height: 44px; } }
