/* ==========================================================================
   Форма Цвета — главные стили
   ========================================================================== */

:root {
  --color-bg: #F7F3EC;
  --color-surface: #FFFCF7;
  --color-linen: #EDE5D8;
  --color-sand: #D8C7AE;
  --color-sage: #AEB99B;
  --color-olive: #4F5A3F;
  --color-wood: #8A6A4F;
  --color-black: #1C1C1A;
  --color-gray: #A49C91;
  --color-border: rgba(28, 28, 26, 0.08);
  --color-border-strong: rgba(28, 28, 26, 0.24);

  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --container-padding: clamp(16px, 4vw, 48px);
  --section-space: clamp(64px, 8vw, 120px);

  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 60px rgba(28, 28, 26, 0.06);
  --shadow-card: 0 16px 40px rgba(28, 28, 26, 0.08);

  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.6;
  color: var(--color-black);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

/* Container — резиновая ширина с боковыми отступами */
.fc-container {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

/* Typography */
.fc-section__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.fc-section__title--center { text-align: center; }

.fc-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 48px);
  flex-wrap: wrap;
}

.fc-section { padding-block: var(--section-space); }

.fc-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-wood);
  white-space: nowrap;
  transition: gap var(--transition);
}

.fc-link-arrow svg { width: 18px; height: 18px; }
.fc-link-arrow:hover { gap: 12px; }

/* Buttons */
.fc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.fc-btn:hover { transform: translateY(-1px); }
.fc-btn--sm { padding: 12px 20px; font-size: 14px; }

.fc-btn--primary {
  background: var(--color-black);
  color: var(--color-surface);
}
.fc-btn--primary:hover { background: var(--color-olive); }

.fc-btn--secondary {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-border-strong);
}
.fc-btn--secondary:hover {
  background: var(--color-sage);
  border-color: var(--color-sage);
}

.fc-btn--light {
  background: var(--color-surface);
  color: var(--color-black);
}
.fc-btn--light:hover { background: var(--color-linen); }

.fc-btn--outline-light {
  background: transparent;
  color: var(--color-surface);
  border-color: rgba(255, 252, 247, 0.4);
}
.fc-btn--outline-light:hover {
  background: rgba(255, 252, 247, 0.1);
}

.fc-btn__icon svg { width: 18px; height: 18px; }

/* Header */
.fc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.fc-header--static {
  position: relative;
}

.fc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 32px);
  min-height: 72px;
  padding-block: 10px;
}

.fc-header__logo {
  flex: 0 0 auto;
  max-width: var(--fc-logo-width, 220px);
  line-height: 0;
}

.fc-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.fc-logo__text {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.fc-logo__image,
.fc-logo__svg,
.fc-logo img,
.fc-logo svg,
.custom-logo,
.custom-logo-link img {
  display: block;
  height: var(--fc-logo-height, 52px);
  width: auto;
  max-width: var(--fc-logo-width, 220px);
  object-fit: contain;
}

.fc-logo__svg {
  fill: currentColor;
}

.fc-logo--footer .fc-logo__image,
.fc-logo--footer .fc-logo__svg,
.fc-logo--footer img,
.fc-logo--footer svg {
  height: calc(var(--fc-logo-height, 52px) * 0.85);
}

.fc-logo--footer .fc-logo__text { color: var(--color-surface); }

.fc-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.fc-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  flex-wrap: wrap;
}

.fc-nav__list a {
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--transition);
}
.fc-nav__list a:hover { color: var(--color-olive); }

.fc-header__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.fc-header__phone {
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}
.fc-header__phone:hover { color: var(--color-olive); }

.fc-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}
.fc-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-black);
  transition: var(--transition);
}

/* Скрыть дублирующую обёртку WP, если попала в разметку */
.fc-header .custom-logo-link {
  display: contents;
}

/* Подменю в навигации */
.fc-nav__list .sub-menu {
  display: none;
}
.fc-hero {
  padding-block: clamp(48px, 6vw, 96px) var(--section-space);
  background: linear-gradient(135deg, #F7F3EC 0%, #EDE5D8 55%, #D8C7AE 100%);
}

.fc-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.fc-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.fc-hero__subtitle {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--color-gray);
  max-width: 52ch;
  margin-bottom: 32px;
}

.fc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.fc-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
}

.fc-badge__icon svg { width: 16px; height: 16px; color: var(--color-olive); }

.fc-hero__visual { position: relative; }

.fc-hero__image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(79, 90, 63, 0.15), rgba(28, 28, 26, 0.05)),
    var(--color-sage);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
}

.fc-hero__card {
  position: absolute;
  padding: 14px 18px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 600;
}

.fc-hero__card--soon {
  bottom: 24px;
  left: -16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fc-hero__card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-olive);
}

/* Services */
.fc-services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}

.fc-service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.fc-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.fc-service-card__link { display: flex; flex-direction: column; height: 100%; }

.fc-service-card__image {
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(180deg, transparent 40%, rgba(28, 28, 26, 0.35)),
    var(--color-sand);
  background-image:
    linear-gradient(180deg, transparent 40%, rgba(28, 28, 26, 0.35)),
    var(--fc-service-bg, none),
    linear-gradient(135deg, var(--color-linen), var(--color-sage));
  background-size: cover;
  background-position: center;
  position: relative;
}

.fc-service-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: var(--color-black);
  color: var(--color-surface);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

.fc-service-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.fc-service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
}

.fc-service-card__text {
  font-size: 14px;
  color: var(--color-gray);
  flex: 1;
}

.fc-service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}
.fc-service-card__more svg { width: 16px; height: 16px; }

/* Benefits */
.fc-benefits { background: var(--color-linen); }

.fc-benefits__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
  margin-top: clamp(32px, 4vw, 48px);
}

.fc-benefit-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: clamp(20px, 2vw, 28px);
  text-align: center;
}

.fc-benefit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--color-olive);
  background: var(--color-linen);
  border-radius: 50%;
}
.fc-benefit-card__icon svg { width: 28px; height: 28px; }

.fc-benefit-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.fc-benefit-card__text {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.5;
}

/* Prices */
.fc-prices__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}

.fc-price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: clamp(20px, 2vw, 28px);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.fc-price-card__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--color-linen);
}

.fc-price-card__icon--nails { background: linear-gradient(135deg, #D8C7AE, #AEB99B); }
.fc-price-card__icon--pedicure { background: linear-gradient(135deg, #EDE5D8, #8A6A4F); }
.fc-price-card__icon--lashes { background: linear-gradient(135deg, #AEB99B, #4F5A3F); }
.fc-price-card__icon--brows { background: linear-gradient(135deg, #D8C7AE, #4F5A3F); }

.fc-price-card__name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  min-height: 2.8em;
}

.fc-price-card__price {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
}

.fc-prices__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Masters */
.fc-masters__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.fc-filter-btn {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--color-border-strong);
  color: var(--color-black);
  transition: var(--transition);
}

.fc-filter-btn:hover,
.fc-filter-btn.is-active {
  background: var(--color-black);
  color: var(--color-surface);
  border-color: var(--color-black);
}

.fc-masters__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.fc-master-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: opacity var(--transition), transform var(--transition);
}

.fc-master-card.is-hidden {
  display: none;
}

.fc-master-card__photo {
  aspect-ratio: 1;
  background: var(--color-linen);
  position: relative;
  overflow: hidden;
}

.fc-master-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-master-card__placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color-gray);
}
.fc-master-card__placeholder-icon svg { width: 48px; height: 48px; }

.fc-master-card__soon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  background: var(--color-black);
  color: var(--color-surface);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

.fc-master-card__body { padding: 20px; }

.fc-master-card__name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
}

.fc-master-card__position {
  font-size: 14px;
  color: var(--color-gray);
  margin-bottom: 16px;
}

.fc-master-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fc-master-card--placeholder .fc-master-card__photo {
  background: linear-gradient(135deg, var(--color-linen), var(--color-sand));
}

/* Works */
.fc-works__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(8px, 1vw, 16px);
}

.fc-works__image {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background:
    var(--fc-work-bg, none),
    linear-gradient(135deg, var(--color-sage), var(--color-sand));
  background-size: cover;
  background-position: center;
  transition: transform var(--transition);
}

.fc-works__item:hover .fc-works__image { transform: scale(1.03); }

/* Reviews */
.fc-reviews { background: var(--color-linen); }

.fc-reviews__slider { margin-top: 40px; }

.fc-reviews__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}

.fc-review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: clamp(20px, 2vw, 28px);
  box-shadow: var(--shadow-soft);
}

.fc-review-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.fc-review-card__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.fc-review-card__stars { color: #D4A853; font-size: 14px; letter-spacing: 2px; }
.fc-review-card__stars .is-filled { color: #D4A853; }

.fc-review-card__source {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-linen);
}

.fc-review-card__source--yandex { color: #FC3F1D; }
.fc-review-card__source--2gis { color: #2DBE2C; }

.fc-review-card__text {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.6;
}

.fc-reviews__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.fc-reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gray);
  opacity: 0.4;
  transition: var(--transition);
}

.fc-reviews__dot.is-active {
  opacity: 1;
  background: var(--color-black);
  transform: scale(1.3);
}

.fc-reviews__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Hair soon banner */
.fc-hair-soon__banner {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  padding: clamp(24px, 4vw, 48px);
  background: linear-gradient(135deg, #1C1C1A 0%, #34382C 100%);
  color: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.fc-hair-soon__visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(174, 185, 155, 0.3), rgba(28, 28, 26, 0.8));
  background-size: cover;
  background-position: center;
  min-height: 200px;
}

.fc-hair-soon__label {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-sage);
  margin-bottom: 12px;
}

.fc-hair-soon__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  margin-bottom: 16px;
}

.fc-hair-soon__text {
  font-size: 15px;
  color: rgba(255, 252, 247, 0.75);
  margin-bottom: 24px;
  max-width: 48ch;
}

.fc-hair-soon__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fc-hair-soon__decor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  min-width: 120px;
}

.fc-hair-soon__decor-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border: 1.5px solid rgba(174, 185, 155, 0.45);
  border-radius: 50%;
  color: var(--color-sage);
}

.fc-hair-soon__decor-icon svg {
  width: 40px;
  height: 40px;
}

.fc-hair-soon__decor-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(174, 185, 155, 0.7);
}

/* Contacts */
.fc-contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 0.8fr;
  gap: clamp(16px, 2vw, 24px);
  margin-top: 40px;
}

.fc-contacts__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fc-contacts__block h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gray);
  margin-bottom: 8px;
}

.fc-contacts__hint {
  font-size: 14px;
  color: var(--color-gray);
  margin-top: 4px;
}

.fc-contacts__socials {
  display: flex;
  gap: 10px;
}

.fc-contacts__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-linen);
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
}
.fc-contacts__socials a:hover { background: var(--color-sage); }

.fc-contacts__photo {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-sand), var(--color-wood));
  background-size: cover;
  background-position: center;
  min-height: 280px;
}

.fc-contacts__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--color-border);
}

.fc-contacts__cta {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.fc-contacts__cta h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 8px;
}

.fc-contacts__cta p {
  font-size: 14px;
  color: var(--color-gray);
  margin-bottom: 20px;
}

/* Footer */
.fc-footer {
  background: var(--color-black);
  color: var(--color-surface);
  padding-block: clamp(48px, 6vw, 72px);
}

.fc-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}

.fc-logo--footer .fc-logo__text { color: var(--color-surface); }

.fc-footer__tagline {
  font-size: 14px;
  color: rgba(255, 252, 247, 0.6);
  margin-top: 8px;
}

.fc-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fc-footer__menu a {
  font-size: 14px;
  color: rgba(255, 252, 247, 0.75);
  transition: color var(--transition);
}
.fc-footer__menu a:hover { color: var(--color-sage); }

.fc-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.fc-footer__socials {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.fc-footer__socials a {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 252, 247, 0.75);
}

.fc-footer__copy {
  font-size: 13px;
  color: rgba(255, 252, 247, 0.5);
  margin: 0;
}

.fc-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  align-self: end;
}

.fc-footer__dev {
  font-size: 12px;
  color: rgba(255, 252, 247, 0.45);
}

/* Works page */
.fc-page-works { padding-block: var(--section-space); }

.fc-works-page__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.fc-works-page__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}

.fc-works-page__item.is-hidden { display: none; }

.fc-works-page__caption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--color-gray);
  text-align: center;
}

@media (max-width: 992px) {
  .fc-works-page__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .fc-works-page__grid { grid-template-columns: 1fr; }
}

/* Sticky booking (mobile) */
.fc-sticky-booking {
  display: none;
  position: fixed;
  bottom: 16px;
  left: var(--container-padding);
  right: var(--container-padding);
  z-index: 90;
  padding: 16px;
  background: var(--color-black);
  color: var(--color-surface);
  border-radius: var(--radius-pill);
  text-align: center;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}

/* Page fallback */
.fc-page { padding-block: var(--section-space); }
.fc-page__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 24px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1200px) {
  .fc-services__grid { grid-template-columns: repeat(3, 1fr); }
  .fc-benefits__grid { grid-template-columns: repeat(3, 1fr); }
  .fc-prices__grid { grid-template-columns: repeat(2, 1fr); }
  .fc-works__grid { grid-template-columns: repeat(3, 1fr); }
  .fc-reviews__track { grid-template-columns: repeat(2, 1fr); }
  .fc-contacts__grid { grid-template-columns: 1fr 1fr; }
  .fc-footer__inner { grid-template-columns: 1fr 1fr; }
  .fc-footer__meta { grid-column: 1 / -1; align-items: flex-start; }
}

@media (max-width: 992px) {
  .fc-header__inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-areas:
      "logo actions burger"
      "nav nav nav";
    align-items: center;
    column-gap: 12px;
    row-gap: 0;
  }

  .fc-header__logo {
    grid-area: logo;
    max-width: none;
  }

  .fc-header__actions {
    grid-area: actions;
    width: auto;
    padding-bottom: 0;
  }

  .fc-burger {
    display: flex;
    grid-area: burger;
  }

  .fc-nav {
    grid-area: nav;
    flex: none;
    position: fixed;
    inset: auto 0 0 0;
    top: var(--fc-header-height, 72px);
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 24px var(--container-padding);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    justify-content: flex-start;
    max-height: calc(100vh - var(--fc-header-height, 72px));
    overflow-y: auto;
  }

  .fc-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .fc-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .fc-header__phone { display: none; }

  .fc-hero__inner { grid-template-columns: 1fr; }
  .fc-hero__visual { order: -1; max-width: 480px; margin-inline: auto; width: 100%; }

  .fc-masters__grid { grid-template-columns: repeat(2, 1fr); }

  .fc-hair-soon__banner {
    grid-template-columns: 1fr;
  }

  .fc-hair-soon__decor { display: none; }
}

@media (max-width: 768px) {
  .fc-services__grid { grid-template-columns: 1fr; }
  .fc-benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .fc-prices__grid { grid-template-columns: 1fr 1fr; }
  .fc-masters__grid { grid-template-columns: 1fr; }
  .fc-works__grid { grid-template-columns: repeat(2, 1fr); }

  .fc-reviews__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
  }

  .fc-review-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .fc-reviews__dots { display: flex; }

  .fc-contacts__grid { grid-template-columns: 1fr; }

  .fc-footer__inner { grid-template-columns: 1fr; }

  .fc-sticky-booking { display: block; }

  .fc-header__actions .fc-btn--sm { display: none; }
}

@media (max-width: 480px) {
  .fc-benefits__grid { grid-template-columns: 1fr; }
  .fc-prices__grid { grid-template-columns: 1fr; }
  .fc-hero__actions { flex-direction: column; }
  .fc-hero__actions .fc-btn { width: 100%; }
}

/* Burger animation */
.fc-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fc-burger.is-active span:nth-child(2) { opacity: 0; }
.fc-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav current */
.fc-nav__list .current-menu-item a,
.fc-nav__list .current_page_item a {
  color: var(--color-olive);
  font-weight: 600;
}
