/* ═══════════════════════════════════════════
   NailRoom — Styles v2 (Editorial)
   ═══════════════════════════════════════════ */

/* ─── highlight ─── */
::selection {
  background: #fda9d3; /* highlight color */
  color: #111;         /* selected text color */
}

::-moz-selection {
  background: #fda9d3;
  color: #111;
}

/* ─── Fonts ─── */
@font-face {
  font-family: 'LTRemark';
  src: url('./LTRemark-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LTRemark';
  src: url('./LTRemark-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LTRemark';
  src: url('./LTRemark-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ─── Custom Properties ─── */
:root {
  --accent: #8e2358;
  --accent-hover: #a63d6f;
  --accent-dark: #6e1b45;
  --bg: #f3e3e5;
  --bg-soft: #ecd3d6;
  --bg-card: #faf6f7;
  --text: #250218;
  --text-secondary: #5c3a4d;
  --text-muted: #8a6b7a;
  --border: rgba(37, 2, 24, 0.07);
  --border-strong: rgba(37, 2, 24, 0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --font-display: 'LTRemark', Georgia, serif;
  --font-serif: 'LTRemark', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1140px;
  --gap: 24px;
}

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }

.c-scrollbar {
  z-index: 101;
}

.c-scrollbar_thumb {
  background-color: rgba(142, 35, 88, 0.65);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

/* ─── Section utilities ─── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .section-title { font-size: 36px; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 50px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn--primary { 
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(142, 35, 88, 0.22);
}
.btn--full { width: 100%; }

/* ═══════════════════════════════════════════
   Top Info Bar + Navigation
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}

/* ── Info Bar ── */
.info-bar {
  background: var(--bg-soft);
  padding: 7px 0;
  font-size: 12px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  max-height: 40px;
  transition: max-height 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
}
.nav--scrolled .info-bar {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-color: transparent;
}
.info-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.info-bar__left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}
.info-bar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.info-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-secondary);
  font-size: 12px;
  text-decoration: none;
}
.info-bar__item:hover { color: var(--text); }
.info-bar__icon {
  width: 13px;
  height: 13px;
  opacity: 0.6;
}

@media (max-width: 767px) {
  .info-bar { display: none; }
}

/* ── Main Nav Bar ── */
.nav-bar {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.nav--scrolled .nav-bar {
  padding: 10px 0;
  background: rgba(250, 246, 247, 0.97);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  padding-top: 6px;
  font-size: 32px;
  color: var(--text);
  text-decoration: none;
}
.nav__logo:hover { color: var(--accent); }

.nav__links {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 768px) {
  .nav__links { display: flex; }
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--accent); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
}
.nav__phone-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.nav__phone-btn svg {
  width: 16px;
  height: 16px;
}

/* CTA button with circle arrow */
.nav__cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  border-radius: 50px;
  border: 1px solid #a63d6f;
  padding: 3px 3px 3px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(142, 35, 88, 0.25);
}
.nav__cta-text {
  color: #faf6f7;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-right: 10px;
}
.nav__cta-circle {
  width: 30px;
  height: 30px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav__cta-arrow {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
  margin-left: -3px;
}

@media (max-width: 480px) {
  .nav__cta { padding: 6px 6px 6px 16px; }
  .nav__cta-text { font-size: 12px; margin-right: 8px; }
  .nav__cta-circle { width: 24px; height: 24px; }
  .nav__cta-arrow { width: 6px; height: 6px; }
}

/* ═══════════════════════════════════════════
   Hero — Editorial 5 / 7 split
   ═══════════════════════════════════════════ */
.hero {
  padding: 100px 0 56px;
}
@media (min-width: 768px) {
  .hero { padding: 140px 0 96px; }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 5fr 7fr;
    gap: 40px;
  }
}

/* ── Left column ── */
.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .hero__title { font-size: 44px; }
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 320px;
}

/* Compact metadata cluster */
.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  padding: 0;
}

.hero__meta-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.hero__meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

/* ── Right column — art-directed image ── */
.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__image-frame {
  position: relative;
  max-width: 480px;
  width: 100%;
}

/* Offset background panel */
.hero__image-bg {
  position: absolute;
  top: 20px;
  right: -12px;
  bottom: -12px;
  left: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

/* Floating badge */
.hero__badge {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: -16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(37, 2, 24, 0.08);
}

@media (max-width: 767px) {
  .hero__badge { left: 0; bottom: -14px; }
  .hero__image-bg { top: 14px; right: -8px; bottom: -8px; left: 14px; }
}

/* ═══════════════════════════════════════════
   Services + Pricing — Editorial layout
   ═══════════════════════════════════════════ */
.services {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .services { padding: 100px 0; }
}

/* Header — editorial title like the reference */
.services__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .services__header {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 40px;
    margin-bottom: 56px;
  }
}

.services__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.15;
  color: var(--text);
}
.services__title em {
  font-family: var(--font-serif);
  font-style: normal;
  color: var(--accent);
}
@media (min-width: 768px) {
  .services__title { font-size: 48px; }
}

.services__intro {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 400px;
}
@media (min-width: 768px) {
  .services__intro { padding-bottom: 4px; }
}

/* Category blocks */
.services__category {
  margin-bottom: 40px;
}
.services__category:last-child { margin-bottom: 0; }

.services__cat-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.services__cat-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  flex-shrink: 0;
}

/* Price grid — 2 columns on desktop like the reference */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 640px) {
  .price-grid { grid-template-columns: 1fr 1fr; column-gap: 40px; }
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.price-name {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--text);
  font-weight: 400;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--accent);
  font-style: normal;
  margin-left: 16px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   Nos Soins — 4 Image Cards
   ═══════════════════════════════════════════ */
.soins {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .soins { padding: 100px 0; }
}

.soins__header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
}
.soins__header .section-title {
  margin-bottom: 12px;
}
.soins__intro {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.soins__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .soins__grid { grid-template-columns: 1fr 1fr; gap: 22px; }
}

/* ── Hero-style card ── */
.soin-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .soin-card { min-height: 560px; }
}

/* Full-bleed background image */
.soin-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.soin-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.soin-card:hover .soin-card__image img {
  transform: scale(1.04);
}
.soin-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(37, 2, 24, 0.18) 0%,
    rgba(37, 2, 24, 0.45) 50%,
    rgba(37, 2, 24, 0.55) 100%
  );
}

/* Centered text overlay */
.soin-card__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 28px 100px;
}
.soin-card__eyebrow {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.soin-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 42px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .soin-card__title { font-size: 32px; }
}
.soin-card__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.soin-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 300px;
  margin-bottom: 20px;
}

/* CTA — circle arrow */
.soin-card__cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  border-radius: 50px;
  border: 1px solid #a63d6f;
  padding: 3px 3px 3px 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.soin-card__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(142, 35, 88, 0.22);
}
.soin-card__cta-text {
  color: #e7cbcf;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-right: 8px;
}
.soin-card__cta-circle {
  width: 26px;
  height: 26px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.soin-card__cta-arrow {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
  margin-left: -2px;
}

/* 3 mini feature cards at bottom */
.soin-card__features {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 12px 12px;
}
.soin-card__feat {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 14px 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.soin-card__feat-icon {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  margin-bottom: 4px;
  flex-shrink: 0;
}
.soin-card__feat-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  line-height: 1.2;
}
.soin-card__feat-sub {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .faq { padding: 100px 0; }
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 768px) {
  .faq__grid {
    grid-template-columns: 5fr 7fr;
    gap: 48px;
  }
}

.faq__heading .section-title { margin-bottom: 0; }

.faq__list {
  display: flex;
  flex-direction: column;
}

.accordion { border-bottom: 1px solid var(--border-strong); }
.accordion:first-child { border-top: 1px solid var(--border-strong); }

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  line-height: 1.5;
  transition: color 0.2s;
}
.accordion__trigger:hover { color: var(--accent); }

.accordion__icon {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
  width: 20px;
  text-align: center;
}

.accordion--open .accordion__icon { transform: rotate(45deg); }

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion--open .accordion__content { max-height: 200px; }

.accordion__content p {
  padding: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.accordion__content a { font-weight: 500; }

/* ═══════════════════════════════════════════
   Location
   ═══════════════════════════════════════════ */
.location {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .location { padding: 100px 0; }
}

.location__subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 10px;
  margin-bottom: 40px;
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 768px) {
  .location__grid {
    grid-template-columns: 7fr 5fr;
    gap: var(--gap);
  }
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.location__map iframe { display: block; }

.location__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location__detail h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 4px;
}
.location__detail p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.location__detail a { font-weight: 500; }

/* ═══════════════════════════════════════════
   Footer — Editorial dark block
   ═══════════════════════════════════════════ */
.footer {
  padding: 64px 0 0;
}

.footer__card {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius-lg);
  padding: 56px 48px 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
}

/* ── Brand column ── */
.footer__brand {
  grid-column: 1 / -1;
}
@media (min-width: 768px) {
  .footer__brand { grid-column: 1; }
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  margin-bottom: 20px;
}

.footer__contact-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer__contact-row a {
  color: rgba(255,255,255,0.65);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.footer__contact-row a:hover { color: #fff; }
.footer__contact-row .footer__contact-icon {
  font-size: 12px;
  opacity: 0.6;
}

.footer__hours-line {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.footer__hours-label {
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 2px;
}

/* ── Menu column — large serif links ── */
.footer__menu h4,
.footer__social h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__menu-list a {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  display: block;
  transition: color 0.2s;
}
.footer__menu-list a:hover { color: #fff; }

/* ── Social column — large serif links ── */
.footer__social-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__social-list a {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  display: block;
  transition: color 0.2s;
}
.footer__social-list a:hover { color: #fff; }

/* ── Footer bottom ── */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}

/* ═══════════════════════════════════════════
   Floating Call Bar (Mobile)
   ═══════════════════════════════════════════ */
.floating-call {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.floating-call--visible { transform: translateY(0); }

.floating-call__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #a63d6f;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}
.floating-call__btn:hover { background: var(--accent-hover); color: #fff; }

@media (min-width: 768px) {
  .floating-call { display: none; }
}

@media (max-width: 767px) {
  .footer { padding-bottom: 72px; }
  .footer__card { padding: 40px 24px 0; border-radius: var(--radius); }
}
