.tmck-site {
  --tmck-bg: #fbf7ed;
  --tmck-text: #332d25;
  --tmck-card: #fffdf7;
  --tmck-soft: #efe4cf;
  --tmck-border: #e0d3bd;
  --tmck-muted: #766c5e;
  --tmck-gold: #bd7b2b;
  --tmck-dark: #2d251f;
  color: var(--tmck-text);
  background: var(--tmck-bg);
  font-family: "Inter", system-ui, sans-serif;
}
.tmck-site h1,
.tmck-site h2,
.tmck-site h3,
.tmck-brand strong,
.tmck-price {
  font-family: "Playfair Display", Georgia, serif;
}
.tmck-site a { color: inherit; text-decoration: none; }
.tmck-site img { display: block; max-width: 100%; }
.tmck-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 20px;
  background: var(--tmck-dark);
  color: #fff7e8;
  font-size: 13px;
}
.tmck-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--tmck-border);
  background: rgba(251,247,237,.96);
  backdrop-filter: blur(10px);
}
.tmck-brand { display: flex; align-items: center; gap: 10px; }
.tmck-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--tmck-gold);
  color: #fff;
  font-weight: 800;
}
.tmck-brand strong { display: block; font-size: 24px; line-height: 1; }
.tmck-brand small {
  display: block;
  margin-top: 4px;
  color: var(--tmck-muted);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.tmck-header nav { display: flex; gap: 20px; font-weight: 700; font-size: 14px; }
.tmck-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--tmck-gold);
  border-radius: 8px;
  background: var(--tmck-gold);
  color: #fff !important;
  font-weight: 800;
}
.tmck-hero {
  min-height: 76vh;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}
.tmck-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.35), rgba(0,0,0,.7));
}
.tmck-hero > div {
  position: relative;
  max-width: 760px;
}
.tmck-hero p,
.tmck-heading p,
.tmck-page-hero p {
  margin: 0 0 12px;
  color: var(--tmck-gold);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 800;
}
.tmck-hero p { color: rgba(255,255,255,.85); }
.tmck-hero h1 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 1.05;
}
.tmck-hero span { display: block; max-width: 620px; margin-bottom: 28px; font-size: 18px; line-height: 1.65; }
.tmck-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 20px;
}
.tmck-soft { max-width: none; background: rgba(239,228,207,.55); border-top: 1px solid var(--tmck-border); border-bottom: 1px solid var(--tmck-border); }
.tmck-soft > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.tmck-page-hero {
  padding: 76px 20px;
  text-align: center;
  background: rgba(239,228,207,.55);
  border-bottom: 1px solid var(--tmck-border);
}
.tmck-page-hero h1,
.tmck-heading h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
}
.tmck-page-hero span {
  display: block;
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--tmck-muted);
}
.tmck-heading { margin-bottom: 34px; text-align: center; }
.tmck-grid { display: grid; gap: 24px; }
.tmck-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tmck-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tmck-card {
  overflow: hidden;
  border: 1px solid var(--tmck-border);
  border-radius: 16px;
  background: var(--tmck-card);
}
.tmck-kitten-card { transition: transform .25s ease, box-shadow .25s ease; }
.tmck-kitten-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -22px rgba(51,45,37,.5); }
.tmck-media { aspect-ratio: 16/10; overflow: hidden; background: #efe9dc; }
.tmck-media img { width: 100%; height: 100%; object-fit: cover; }
.tmck-card-pad { padding: 24px; }
.tmck-card h3 { margin: 10px 0 6px; font-size: 26px; }
.tmck-muted { color: var(--tmck-muted); line-height: 1.65; }
.tmck-price { margin: 12px 0 0; color: var(--tmck-gold); font-size: 26px; }
.tmck-badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--tmck-soft);
  font-size: 12px;
  font-weight: 800;
}
.tmck-badge-green { background: #16803b; color: #fff; }
.tmck-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 24px;
  align-items: start;
}
.tmck-review-card {
  position: relative;
  max-width: 340px;
  margin: 54px auto 0;
  padding-top: 0;
  filter: drop-shadow(18px 18px 0 rgba(51,45,37,.08));
}
.tmck-review-avatar {
  position: relative;
  z-index: 2;
  width: 128px;
  height: 128px;
  margin: 0 auto -46px;
  overflow: hidden;
  border: 3px solid #ffbe22;
  border-radius: 999px;
  background: #f1f1f1;
  box-shadow: 0 8px 18px rgba(51,45,37,.22);
}
.tmck-review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tmck-review-body {
  min-height: 260px;
  padding: 64px 28px 26px;
  text-align: center;
  background: #ff3f78;
  color: #fff;
}
.tmck-review-body h3 {
  margin: 0;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
}
.tmck-review-rule {
  position: relative;
  width: 118px;
  height: 2px;
  margin: 10px auto 22px;
  background: #ffd93d;
}
.tmck-review-rule:after {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  width: 18px;
  height: 18px;
  border-right: 2px solid #ffd93d;
  border-bottom: 2px solid #ffd93d;
  background: #ff3f78;
  transform: translateX(-50%) rotate(45deg);
}
.tmck-stars {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  color: #fff200;
  font-size: 29px;
  line-height: 1;
  letter-spacing: 2px;
}
.tmck-review-body p {
  margin: 0 auto;
  max-width: 260px;
  color: rgba(255,255,255,.92);
  font-size: 15px;
  line-height: 1.45;
}
.tmck-review-body span {
  display: block;
  margin-top: 16px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 700;
}
.tmck-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px; }
.tmck-form input,
.tmck-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--tmck-border);
  border-radius: 8px;
  background: #fff;
}
.tmck-form textarea { min-height: 140px; }
.tmck-form label { display: block; margin-bottom: 6px; font-weight: 800; }
.tmck-notice {
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid #b9dfbe;
  border-radius: 8px;
  background: #e9f8ec;
}
.tmck-smart-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  width: min(280px, calc(100vw - 36px));
  padding: 16px;
  border: 1px solid rgba(189,123,43,.35);
  border-radius: 16px;
  background: rgba(255,253,247,.97);
  box-shadow: 0 20px 45px -20px rgba(51,45,37,.45);
  backdrop-filter: blur(12px);
}
.tmck-smart-contact p {
  margin: 0;
  color: var(--tmck-muted);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
}
.tmck-smart-contact strong {
  display: block;
  margin: 5px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}
.tmck-smart-contact div { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tmck-smart-contact a {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--tmck-gold);
  color: #fff !important;
  font-weight: 800;
}
.tmck-smart-contact a:last-child {
  border: 1px solid var(--tmck-gold);
  background: transparent;
  color: var(--tmck-gold) !important;
}
@media (max-width: 980px) {
  .tmck-header { align-items: flex-start; flex-direction: column; }
  .tmck-header nav { flex-wrap: wrap; }
  .tmck-grid-3,
  .tmck-grid-4,
  .tmck-review-grid,
  .tmck-contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .tmck-topbar { display: none; }
  .tmck-grid-3,
  .tmck-grid-4,
  .tmck-review-grid,
  .tmck-contact-grid { grid-template-columns: 1fr; }
  .tmck-brand strong { font-size: 21px; }
  .tmck-hero { min-height: 68vh; }
  .tmck-smart-contact { left: 12px; right: 12px; width: auto; }
}
