:root {
  /* Пастельная олива / хаки / шалфей. Не военкомат, а спокойный салон. */
  --bg: #f5f6ed;
  --bg-soft: #e9eddb;
  --card: #fffef8;
  --text: #2a3126;
  --muted: #65705a;
  --line: rgba(69, 82, 51, 0.15);
  --accent: #829866;
  --accent-dark: #52683d;
  --accent-soft: #dce6c8;
  --accent-pale: #f0f4e6;
  --shadow: 0 18px 45px rgba(49, 68, 35, 0.13);
  --radius: 24px;
  --container: 1180px;
  --font-script: "Marck Script", "Bad Script", "Segoe Script", "Monotype Corsiva", cursive;
}

* {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: rgba(82, 104, 61, 0.48) transparent;
}

*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  margin: 14px;
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  min-height: 42px;
  border: 4px solid transparent;
  border-radius: 999px;
  background: rgba(82, 104, 61, 0.48);
  background-clip: content-box;
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(82, 104, 61, 0.66);
  background-clip: content-box;
}

*::-webkit-scrollbar-button,
*::-webkit-scrollbar-corner {
  width: 0;
  height: 0;
  background: transparent;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 10%, rgba(207, 222, 178, 0.62), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(189, 205, 162, 0.48), transparent 32%),
    linear-gradient(180deg, #fcfff6 0%, var(--bg) 42%, #f9fbef 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(252, 255, 246, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo,
.footer-logo {
  font-family: var(--font-script);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  color: var(--muted);
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(143, 164, 107, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  box-shadow: 0 18px 34px rgba(143, 164, 107, 0.36);
}

.btn-light {
  background: rgba(255, 255, 255, 0.55);
  color: var(--accent-dark);
  border: 1px solid rgba(143, 164, 107, 0.28);
  box-shadow: none;
}

.btn-light:hover {
  background: #fff;
  color: var(--accent-dark);
}

.btn-small {
  min-height: 46px;
  padding: 0 22px;
  font-size: 14px;
}

.hero {
  padding: 58px 0 52px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 56px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--text);
}

h1 {
  max-width: 620px;
  font-size: clamp(52px, 6.4vw, 86px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
}

.hero-text {
  margin: 26px 0 0;
  font-size: 20px;
  color: var(--muted);
}

.hero-price {
  margin: 16px 0 0;
  color: var(--accent-dark);
  font-size: 19px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.trust-icon,
.feature-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(143, 164, 107, 0.13);
  color: var(--accent-dark);
}

.card-photo {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
  background: var(--card);
}

.hero-photo {
  min-height: 540px;
}

.hero-photo img,
.master-photo img,
.work-card img,
.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 72px 0;
  scroll-margin-top: 96px;
}

.about-section,
.reviews-section,
.contacts-section {
  background: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(77, 88, 58, 0.07);
}

.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: center;
}

.master-photo {
  height: 310px;
}

.about-content > p:not(.section-kicker),
.booking-text {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.feature-card,
.review-card,
.price-card,
.booking-card,
.contact-card,
.map-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(55, 70, 43, 0.065);
}

.feature-card {
  padding: 22px;
}

.feature-card h3 {
  margin: 14px 0 8px;
  font-size: 17px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill,
.slots-grid button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  transition: 0.2s ease;
}

.pill:hover,
.slots-grid button:hover {
  border-color: rgba(143, 164, 107, 0.48);
  color: var(--accent-dark);
}

.pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.work-card {
  display: block;
  height: 178px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 12px 28px rgba(55, 70, 43, 0.09);
}

.work-card img {
  transition: transform 0.35s ease;
}

.work-card:hover img {
  transform: scale(1.05);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  position: relative;
  min-height: 168px;
  padding: 26px;
}

.review-card::after {
  content: "”";
  position: absolute;
  top: 10px;
  right: 24px;
  color: rgba(143, 164, 107, 0.18);
  font-family: Georgia, serif;
  font-size: 86px;
  line-height: 1;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.12em;
  font-size: 14px;
}

.review-card p {
  position: relative;
  z-index: 1;
  margin: 18px 0 20px;
  color: var(--text);
}

.review-card span {
  font-weight: 700;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}

.review-meta span {
  color: var(--text);
  font-weight: 800;
}

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(42, 49, 38, 0.34);
  backdrop-filter: blur(12px);
}

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
  padding: 22px;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: none;
}

.modal-panel {
  position: relative;
  width: min(680px, calc(100vw - 44px));
  min-width: 0;
  max-height: min(760px, calc(100vh - 44px));
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 248, 0.96);
  box-shadow: 0 26px 74px rgba(42, 49, 38, 0.24);
}

.modal-panel * {
  min-width: 0;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--accent-dark);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.modal-head {
  padding-right: 44px;
  margin-bottom: 18px;
}

.modal-reviews-list {
  display: grid;
  gap: 14px;
}

.modal-review {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.modal-review p {
  margin: 12px 0 14px;
  color: var(--text);
}

.review-form {
  display: grid;
  gap: 14px;
}

.review-form label {
  display: grid;
  gap: 7px;
}

.review-form label span,
.rating-field legend {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.rating-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.star-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}

.star-rating input {
  display: none;
}

.star-rating-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(82, 104, 61, 0.42);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transition: color 0.16s ease, transform 0.16s ease;
}

.star-rating-button.is-active,
.star-rating-button:hover {
  color: var(--accent);
}

.star-rating-button:hover {
  transform: translateY(-1px);
}

.price-booking-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.84fr) minmax(520px, 1.16fr);
  gap: 48px;
  align-items: start;
}

.price-card {
  margin-top: 24px;
  padding: 26px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.price-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin: 16px 0 0;
  border: 1px solid rgba(143, 164, 107, 0.34);
  border-radius: 999px;
  background: rgba(240, 244, 230, 0.92);
  color: var(--accent-dark);
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.price-toggle:hover {
  border-color: rgba(143, 164, 107, 0.56);
  background: #fff;
  transform: translateY(-1px);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price-row:first-child {
  padding-top: 0;
}

.price-row span {
  color: var(--muted);
}

.price-row small {
  display: block;
  margin-top: 3px;
  color: rgba(101, 112, 90, 0.76);
  font-size: 12px;
  font-weight: 700;
}

.price-row strong {
  white-space: nowrap;
  font-size: 16px;
}

.price-note {
  margin: 22px 0;
  color: var(--muted);
  font-size: 14px;
}

.booking-column {
  scroll-margin-top: 96px;
}

.booking-card {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 18px;
  margin-top: 24px;
  padding: 18px;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.form-message {
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.form-message p {
  margin: 0;
}

.form-log {
  display: grid;
  gap: 5px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(138, 61, 54, 0.16);
  font-family: Consolas, Monaco, monospace;
  font-size: 12px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.form-log span {
  display: block;
}

.form-message-success {
  color: #42612f;
  background: rgba(176, 207, 139, 0.26);
  border: 1px solid rgba(107, 142, 75, 0.24);
}

.form-message-error {
  color: #8a3d36;
  background: rgba(255, 235, 229, 0.9);
  border: 1px solid rgba(184, 83, 69, 0.22);
}

.booking-form label {
  display: grid;
  gap: 7px;
}

.booking-form label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(143, 164, 107, 0.64);
  box-shadow: 0 0 0 4px rgba(143, 164, 107, 0.16);
  background: #fff;
}

.free-slots {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fffef8 0%, var(--accent-pale) 100%);
  border: 1px solid var(--line);
}

.free-slots h3 {
  margin: 0 0 16px;
  font-size: 17px;
}

.slots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.slots-grid button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--text);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.slots-empty {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 26px;
  margin-top: 28px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

button.contact-card {
  width: 100%;
  color: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(143, 164, 107, 0.42);
}

.contact-card > span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 16px;
  background: rgba(143, 164, 107, 0.16);
  color: var(--accent-dark);
  font-weight: 800;
}

.contact-card b {
  display: block;
  margin-bottom: 3px;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-choice {
  display: grid;
  gap: 12px;
}

.contact-choice-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-choice-link:hover {
  transform: translateY(-2px);
  border-color: rgba(143, 164, 107, 0.42);
  background: rgba(255, 255, 255, 0.9);
}

.contact-choice-link span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 16px;
  background: rgba(143, 164, 107, 0.16);
  color: var(--accent-dark);
  font-weight: 800;
}

.contact-choice-link b {
  display: block;
  margin-bottom: 3px;
}

.contact-choice-link p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.map-card {
  min-height: 304px;
  overflow: hidden;
}

.map-card img {
  height: 100%;
}

.site-footer {
  padding: 36px 0;
  background: linear-gradient(135deg, #819764, #52683d);
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
  opacity: 0.86;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 800;
}

.mobile-booking-btn {
  display: none;
}

/* Анимации: спокойно, дорого, без цирка с улетающими ногтями. */
.site-header {
  animation: headerDrop 0.55s ease both;
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js .reveal-left {
  transform: translateX(-34px);
}

.js .reveal-right {
  transform: translateX(34px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.gallery-grid .reveal:nth-child(2),
.reviews-grid .reveal:nth-child(2),
.contact-cards .reveal:nth-child(2),
.features-grid .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.gallery-grid .reveal:nth-child(3),
.reviews-grid .reveal:nth-child(3),
.contact-cards .reveal:nth-child(3),
.features-grid .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.gallery-grid .reveal:nth-child(4),
.contact-cards .reveal:nth-child(4) {
  transition-delay: 230ms;
}

.gallery-grid .reveal:nth-child(5),
.contact-cards .reveal:nth-child(5) {
  transition-delay: 300ms;
}

.gallery-grid .reveal:nth-child(6),
.contact-cards .reveal:nth-child(6) {
  transition-delay: 370ms;
}

.card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%);
}

.feature-card,
.review-card,
.price-card,
.booking-card,
.contact-card,
.work-card,
.map-card {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.feature-card:hover,
.review-card:hover,
.price-card:hover,
.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(49, 68, 35, 0.11);
  border-color: rgba(130, 152, 102, 0.34);
}

.work-card {
  position: relative;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(42, 49, 38, 0.18));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(49, 68, 35, 0.14);
}

.work-card:hover::after {
  opacity: 1;
}

.slots-grid button.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(130, 152, 102, 0.24);
}

.logo,
.btn,
.pill,
.price-toggle,
.mobile-booking-btn,
.contact-card,
.footer-socials a {
  -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal,
  .js .reveal-left,
  .js .reveal-right {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
  }

  .hero-grid,
  .about-grid,
  .price-booking-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 420px;
  }

  .about-grid {
    gap: 34px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .main-nav,
  .site-header .btn-small {
    display: none;
  }

  .hero {
    padding: 40px 0 36px;
  }

  .section {
    padding: 52px 0;
  }

  .trust-row,
  .features-grid,
  .reviews-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .master-photo {
    display: none;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-card {
    grid-template-columns: 1fr;
  }

  .price-card {
    max-height: none !important;
    overflow: visible;
  }

  .price-card.has-more-prices .price-toggle {
    display: inline-flex;
  }

  .price-card.has-more-prices:not(.is-expanded) .price-row:nth-of-type(n + 6) {
    display: none;
  }

  .price-row small {
    display: none;
  }

  .free-slots {
    order: -1;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .mobile-booking-btn {
    display: flex;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 14px 36px rgba(54, 68, 39, 0.26);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .mobile-booking-btn.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }

  body {
    padding-bottom: 0;
  }
}

@media (max-width: 620px) {
  .logo,
  .footer-logo {
    font-size: 27px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-actions,
  .form-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-photo {
    min-height: 320px;
  }

  .master-photo {
    height: 260px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .work-card {
    height: 150px;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-modal {
    align-items: start;
    padding: 10px;
  }

  .modal-panel {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    padding: 18px;
    border-radius: 20px;
  }

  .modal-head {
    margin-bottom: 14px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .modal-review {
    padding: 14px;
  }

  .contact-choice-link {
    min-height: 78px;
    padding: 14px;
    border-radius: 16px;
  }

  .contact-choice-link span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .review-form {
    gap: 12px;
  }

  .star-rating {
    gap: 2px;
  }

  .star-rating-button {
    width: 35px;
    min-height: 36px;
    font-size: 29px;
  }
}
/* Иконки в зелёных заглушках */

.icon-box {
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 16px;
  background: rgba(143, 164, 107, 0.16);
  color: var(--accent-dark);
  overflow: hidden;
}

.icon-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.icon-png-green {
  filter: brightness(0) saturate(100%) invert(39%) sepia(19%) saturate(739%) hue-rotate(48deg) brightness(88%) contrast(88%);
}
