/* Tatsen Beauty — минималистичный, женственный, премиальный стиль */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap');

:root {
  --bg-main: #f7f3ee;
  --bg-secondary: #f1e4d6;
  --bg-accent: #fdf8f5;
  --text-main: #2f2724;
  --text-muted: #8e7b74;
  --accent: #d7a9a3;
  --accent-soft: #f0cfc6;
  --accent-dark: #b37671;
  --border-soft: rgba(185, 155, 142, 0.35);
  --shadow-soft: 0 22px 60px rgba(32, 21, 17, 0.11);
  --radius-lg: 26px;
  --radius-pill: 999px;
}

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

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top left, #fdf8f5 0, #f7f3ee 40%, #f2e5da 100%);
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: none;
}

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

main {
  padding-top: 88px; /* высота хедера */
}

/* HEADER */

.tb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: rgba(247, 243, 238, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(191, 170, 158, 0.25);
}

.tb-navbar {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.tb-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tb-logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tb-logo-subtitle {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tb-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tb-nav-links a {
  position: relative;
  padding-bottom: 4px;
  color: var(--text-muted);
}

.tb-nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease-out;
}

.tb-nav-links a:hover {
  color: var(--text-main);
}

.tb-nav-links a:hover::after {
  width: 100%;
}

.tb-nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tb-nav-phone {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tb-nav-phone strong {
  color: var(--text-main);
  font-weight: 500;
}

.tb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 16px 40px rgba(181, 130, 125, 0.45);
  transition: background 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out;
}

.tb-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 52px rgba(181, 130, 125, 0.55);
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}

.tb-btn-primary i {
  font-size: 14px;
}

/* HERO */

.tb-hero {
  padding: 72px 0 72px;
}

.tb-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}

.tb-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(215, 169, 163, 0.1);
  border: 1px solid rgba(215, 169, 163, 0.35);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tb-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.tb-hero-title {
  margin: 22px 0 16px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tb-hero-title span {
  display: block;
  font-weight: 500;
}

.tb-hero-subtitle {
  max-width: 420px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.tb-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 32px;
}

.tb-badge {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(191, 170, 158, 0.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.7);
}

.tb-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.tb-hero-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.tb-hero-secondary-link span {
  border-bottom: 1px solid rgba(142, 123, 116, 0.4);
}

.tb-hero-secondary-link i {
  font-size: 11px;
}

.tb-hero-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-muted);
}

.tb-hero-note strong {
  color: var(--text-main);
}

.tb-hero-visual {
  position: relative;
}

.tb-hero-card {
  position: relative;
  background: linear-gradient(145deg, #fdf8f5 0, #f1e5db 50%, #f9f0ea 100%);
  border-radius: 40px;
  padding: 26px 26px 26px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.tb-hero-photo {
  border-radius: 32px;
  overflow: hidden;
  background: #d8c6bb;
  position: relative;
}

.tb-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.4), transparent 60%);
  mix-blend-mode: screen;
}

.tb-hero-photo-placeholder {
  width: 100%;
  padding-bottom: 130%;
  background: linear-gradient(135deg, #f2ded1, #e2c2b4);
}

.tb-hero-floating {
  position: absolute;
  left: 18px;
  bottom: 22px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tb-floating-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.tb-floating-main {
  font-size: 13px;
  font-weight: 500;
}

.tb-floating-note {
  font-size: 11px;
  color: var(--text-muted);
}

.tb-hero-tag {
  position: absolute;
  right: 24px;
  top: 24px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(47, 39, 36, 0.82);
  color: #fdf5f1;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* SECTIONS GENERIC */

.tb-section {
  padding: 72px 0;
}

.tb-section-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 36px;
}

.tb-section-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tb-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tb-section-subtitle {
  max-width: 460px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* SERVICES */

.tb-services {
  background: var(--bg-accent);
}

.tb-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.tb-service-card {
  position: relative;
  padding: 24px 22px 22px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 50px rgba(176, 145, 133, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tb-service-tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tb-service-title {
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tb-service-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

.tb-service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}

.tb-service-price {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tb-service-price span {
  font-weight: 500;
}

.tb-service-note {
  font-size: 11px;
  color: var(--text-muted);
}

.tb-service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
}

.tb-service-cta i {
  font-size: 11px;
}

/* ABOUT */

.tb-about {
  background: var(--bg-main);
}

.tb-about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.tb-about-photo {
  position: relative;
}

.tb-about-frame {
  border-radius: 34px;
  padding: 12px;
  background: linear-gradient(150deg, rgba(215, 169, 163, 0.16), rgba(241, 225, 211, 0.9));
}

.tb-about-photo-inner {
  border-radius: 26px;
  overflow: hidden;
  background: #d9c7bd;
}

.tb-about-photo-placeholder {
  width: 100%;
  padding-bottom: 120%;
  background: linear-gradient(135deg, #f3ded1, #e0c0b2);
}

.tb-about-card {
  position: absolute;
  right: -10px;
  bottom: 24px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(129, 93, 79, 0.28);
  font-size: 12px;
  color: var(--text-muted);
}

.tb-about-card strong {
  display: block;
  font-size: 13px;
  color: var(--text-main);
}

.tb-about-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tb-about-text p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

.tb-about-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 6px;
}

.tb-about-list-item {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.tb-bullet {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 6px;
}

/* GALLERY (BEFORE/AFTER) */

.tb-gallery {
  background: var(--bg-accent);
}

.tb-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tb-gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #d9c7bd;
}

.tb-gallery-image-placeholder {
  width: 100%;
  padding-bottom: 130%;
  background: linear-gradient(135deg, #f3ded1, #e0c0b2);
}

.tb-gallery-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.6);
  color: #f6ece6;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* REVIEWS */

.tb-reviews {
  background: var(--bg-main);
}

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

.tb-review-card {
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(191, 170, 158, 0.35);
  box-shadow: 0 18px 50px rgba(176, 145, 133, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tb-review-name {
  font-size: 14px;
  font-weight: 500;
}

.tb-review-meta {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tb-review-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

.tb-review-stars {
  color: #f3b36b;
  font-size: 13px;
}

/* BOOKING */

.tb-booking {
  background: radial-gradient(circle at top, #f7e3da 0, #f7f3ee 40%, #f0e1d5 100%);
}

.tb-booking-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.tb-booking-card {
  border-radius: 30px;
  padding: 30px 26px 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(191, 170, 158, 0.4);
}

.tb-booking-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tb-booking-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.tb-booking-channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tb-channel-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(191, 170, 158, 0.4);
  background: #fff;
  font-size: 12px;
  cursor: pointer;
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out, border-color 0.2s ease-out, background 0.2s ease-out;
}

.tb-channel-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(158, 129, 119, 0.26);
  border-color: var(--accent);
  background: #fffaf7;
}

.tb-channel-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tb-channel-main {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.tb-channel-main i {
  font-size: 15px;
}

.tb-channel-meta {
  font-size: 11px;
  color: var(--text-muted);
}

.tb-booking-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-muted);
}

.tb-booking-small {
  font-size: 11px;
  color: var(--text-muted);
}

.tb-booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tb-booking-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.tb-booking-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.tb-booking-form label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tb-booking-form input,
.tb-booking-form select,
.tb-booking-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(191, 170, 158, 0.55);
  padding: 9px 11px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.92);
  outline: none;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out;
}

.tb-booking-form textarea {
  resize: vertical;
  min-height: 72px;
}

.tb-booking-form input:focus,
.tb-booking-form select:focus,
.tb-booking-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(215, 169, 163, 0.4);
  background: #fff;
}

.tb-booking-form .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 14px 36px rgba(181, 130, 125, 0.45);
  transition: background 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out;
}

.tb-booking-form .btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 44px rgba(181, 130, 125, 0.6);
}

.tb-booking-form .btn-submit i {
  font-size: 14px;
}

.tb-booking-form .success-message {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f5f0eb;
  border: 1px solid rgba(191, 170, 158, 0.6);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tb-booking-form .success-message .success-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
}

.tb-booking-form .success-message h3 {
  margin: 0;
  font-size: 13px;
}

.tb-booking-form .success-message p {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* LOCATION */

.tb-location {
  background: var(--bg-main);
  padding-bottom: 90px;
}

.tb-location-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: stretch;
}

.tb-location-card {
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(191, 170, 158, 0.4);
  box-shadow: 0 18px 50px rgba(176, 145, 133, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tb-location-line {
  font-size: 14px;
  color: var(--text-muted);
}

.tb-location-line strong {
  color: var(--text-main);
}

.tb-location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.tb-location-tag {
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  border: 1px dashed rgba(191, 170, 158, 0.7);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.tb-map-wrapper {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(32, 21, 17, 0.24);
  border: 1px solid rgba(191, 170, 158, 0.5);
}

.tb-map-iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

/* FOOTER OVERRIDES */

.tb-footer {
  background: #15100f;
  color: rgba(248, 239, 234, 0.92);
  padding: 32px 0 24px;
}

.tb-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.tb-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tb-footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tb-footer-text {
  font-size: 13px;
  color: rgba(232, 220, 213, 0.86);
  max-width: 360px;
}

.tb-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.tb-footer-contacts a {
  color: inherit;
}

.tb-footer-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 220, 213, 0.6);
}

.tb-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: rgba(232, 220, 213, 0.55);
}

.tb-footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tb-footer-links a {
  color: inherit;
}

/* Floating Contacts */

.tb-floating-contacts {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.tb-floating-list {
  display: none;
  flex-direction: column;
  gap: 8px;
}

.tb-floating-list.show {
  display: flex;
}

.tb-floating-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(22, 12, 10, 0.94);
  color: #fdf5f0;
  font-size: 12px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.tb-floating-item i {
  font-size: 14px;
}

.tb-floating-toggle {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(140deg, #d7a9a3, #b37671);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 50px rgba(146, 96, 90, 0.6);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.tb-floating-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(146, 96, 90, 0.72);
}

.tb-floating-toggle i {
  font-size: 18px;
}

/* RESPONSIVE */

@media (max-width: 991.98px) {
  main {
    padding-top: 76px;
  }

  .tb-navbar {
    flex-wrap: wrap;
    gap: 14px;
  }

  .tb-nav-links {
    display: none;
  }

  .tb-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .tb-hero-visual {
    order: -1;
  }

  .tb-about-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .tb-about-photo {
    order: -1;
  }

  .tb-about-card {
    right: 10px;
  }

  .tb-booking-inner,
  .tb-location-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .tb-booking-inner > div:nth-child(2) {
    order: -1;
  }

  .tb-location-inner > div:nth-child(2) {
    order: -1;
  }

  .tb-booking-channels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tb-services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tb-gallery-grid,
  .tb-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tb-footer-top {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 575.98px) {
  .tb-hero {
    padding: 56px 0 56px;
  }

  .tb-section {
    padding: 56px 0;
  }

  .tb-hero-card {
    padding: 20px;
    border-radius: 30px;
  }

  .tb-hero-floating {
    left: 16px;
    right: 16px;
  }

  .tb-hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .tb-gallery-grid,
  .tb-reviews-grid,
  .tb-booking-channels {
    grid-template-columns: minmax(0, 1fr);
  }

  .tb-location {
    padding-bottom: 70px;
  }

  .tb-map-iframe {
    height: 220px;
  }

  .tb-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* PRICING */

.tb-pricing {
  background: var(--bg-accent);
}

.tb-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tb-pricing-card {
  border-radius: 22px;
  padding: 20px 20px 18px;
  background: #fff;
  border: 1px solid rgba(191, 170, 158, 0.45);
  box-shadow: 0 18px 50px rgba(176, 145, 133, 0.08);
}

.tb-pricing-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tb-pricing-table {
  border-radius: 14px;
  border: 1px solid rgba(191, 170, 158, 0.35);
  overflow: hidden;
  font-size: 13px;
}

.tb-pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  padding: 7px 10px;
  align-items: center;
}

.tb-pricing-row:nth-child(even) {
  background: rgba(249, 242, 236, 0.8);
}

.tb-pricing-row-head {
  background: rgba(47, 39, 36, 0.9);
  color: #fdf5f0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tb-pricing-row-head span {
  font-weight: 500;
}

.tb-pricing-row span:last-child {
  text-align: right;
  white-space: nowrap;
}

.tb-pricing-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 991.98px) {
  .tb-pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Новогодние элементы */
.tb-newyear-banner {
  background: linear-gradient(135deg, rgba(215, 169, 163, 0.15) 0%, rgba(240, 207, 198, 0.1) 100%);
  border-bottom: 1px solid rgba(215, 169, 163, 0.2);
  padding: 12px 0;
  text-align: center;
  position: relative;
  z-index: 10;
}

.tb-newyear-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tb-newyear-icon {
  font-size: 18px;
  animation: tb-sparkle 2s ease-in-out infinite;
}

.tb-newyear-text {
  font-size: 14px;
  color: var(--text-main);
  font-weight: 400;
  line-height: 1.5;
}

@keyframes tb-sparkle {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* Снежинки в фоне */
.tb-snowflakes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.tb-snowflake {
  position: absolute;
  top: -20px;
  font-size: 16px;
  color: rgba(142, 123, 116, 0.65);
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.8), 0 1px 3px rgba(215, 169, 163, 0.4);
  animation: tb-fall linear infinite;
  user-select: none;
}

.tb-snowflake:nth-child(1) {
  left: 10%;
  animation-duration: 8s;
  animation-delay: 0s;
  font-size: 14px;
}

.tb-snowflake:nth-child(2) {
  left: 20%;
  animation-duration: 10s;
  animation-delay: 1s;
  font-size: 18px;
}

.tb-snowflake:nth-child(3) {
  left: 30%;
  animation-duration: 12s;
  animation-delay: 2s;
  font-size: 16px;
}

.tb-snowflake:nth-child(4) {
  left: 40%;
  animation-duration: 9s;
  animation-delay: 0.5s;
  font-size: 14px;
}

.tb-snowflake:nth-child(5) {
  left: 50%;
  animation-duration: 11s;
  animation-delay: 1.5s;
  font-size: 20px;
}

.tb-snowflake:nth-child(6) {
  left: 60%;
  animation-duration: 13s;
  animation-delay: 2.5s;
  font-size: 15px;
}

.tb-snowflake:nth-child(7) {
  left: 70%;
  animation-duration: 10s;
  animation-delay: 1s;
  font-size: 17px;
}

.tb-snowflake:nth-child(8) {
  left: 80%;
  animation-duration: 9s;
  animation-delay: 0.3s;
  font-size: 14px;
}

.tb-snowflake:nth-child(9) {
  left: 90%;
  animation-duration: 11s;
  animation-delay: 1.8s;
  font-size: 16px;
}

.tb-snowflake:nth-child(10) {
  left: 95%;
  animation-duration: 12s;
  animation-delay: 2.2s;
  font-size: 18px;
}

@keyframes tb-fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0.2;
  }
}

@media (max-width: 768px) {
  .tb-newyear-text {
    font-size: 13px;
    padding: 0 16px;
  }
  
  .tb-newyear-icon {
    font-size: 16px;
  }
  
  .tb-snowflake {
    font-size: 12px !important;
  }
}


