:root {
  --lh-bg:      #ffffff;
  --lh-bg2:     #f9f7f4;
  --lh-bg3:     #f2ede8;
  --lh-line:    #e8e2da;
  --lh-text:    #1c1814;
  --lh-muted:   #6b6258;
  --lh-hint:    #a89e94;
  --lh-accent:  #b87c4a;
  --lh-accent2: #d4956a;
  --lh-dark:    #2c1f14;
  --lh-r:       12px;
  --ff-serif:   'PT Serif', Georgia, serif;
  --ff-sans:    'PT Sans', system-ui, sans-serif;
}

/* ── HERO — фото с градиентом ── */
.lh-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 0 0 var(--lh-r) var(--lh-r);
  margin-bottom: 0;
}
.lh-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lh-hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(249,247,244,0.97) 0%,
    rgba(249,247,244,0.92) 30%,
    rgba(249,247,244,0.5) 55%,
    rgba(249,247,244,0) 75%
  );
}
.lh-hero-body {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 55%;
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lh-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lh-accent);
  margin-bottom: 16px;
  font-weight: 500;
  font-family: var(--ff-sans);
}
.lh-hero-h1 {
  font-family: var(--ff-serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--lh-text);
}
.lh-hero-sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--lh-muted);
  margin-bottom: 32px;
  font-family: var(--ff-sans);
}
.lh-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.lh-btn-primary { display: inline-block; background: var(--lh-accent); color: #fff; padding: 13px 26px; border-radius: 8px; font-size: 14px; font-weight: 500; text-decoration: none; font-family: var(--ff-sans); transition: background 0.15s; }
.lh-btn-primary:hover { background: #a06a38; color: #fff; }
.lh-btn-secondary { display: inline-block; background: transparent; color: var(--lh-text); padding: 13px 26px; border-radius: 8px; font-size: 14px; font-weight: 500; text-decoration: none; font-family: var(--ff-sans); border: 1px solid var(--lh-line); transition: background 0.15s, border-color 0.15s; }
.lh-btn-secondary:hover { background: var(--lh-bg3); border-color: var(--lh-hint); color: var(--lh-text); }

/* ── СТАТИСТИКА ── */
.lh-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--lh-line); border: 1px solid var(--lh-line); border-radius: var(--lh-r); overflow: hidden; margin: 40px 0 56px; }
.lh-stat { background: var(--lh-bg); padding: 28px 24px; text-align: center; }
.lh-stat-num { font-family: var(--ff-serif); font-size: 40px; font-weight: 600; color: var(--lh-accent); display: block; margin-bottom: 6px; line-height: 1; }
.lh-stat-label { font-size: 13px; color: var(--lh-muted); line-height: 1.4; font-family: var(--ff-sans); }

/* ── СЕКЦИИ ── */
.lh-section { margin-bottom: 64px; }
.lh-section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; }
.lh-section-h2 { font-family: var(--ff-serif); font-size: 32px; font-weight: 600; color: var(--lh-text); margin-bottom: 28px; line-height: 1.2; }
.lh-section-header .lh-section-h2 { margin-bottom: 0; }
.lh-all-link { font-size: 14px; color: var(--lh-accent); text-decoration: none; font-family: var(--ff-sans); white-space: nowrap; }
.lh-all-link:hover { color: #a06a38; }

/* ── ТРИ ФОРМАТА ── */
.lh-formats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lh-format-card { background: var(--lh-bg2); border: 1px solid var(--lh-line); border-radius: var(--lh-r); overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: box-shadow 0.15s, transform 0.15s; }
.lh-format-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.10); transform: translateY(-3px); color: inherit; text-decoration: none; }
.lh-format-img { height: 200px; overflow: hidden; flex-shrink: 0; }
.lh-format-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lh-format-body { padding: 22px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.lh-format-title { font-family: var(--ff-serif); font-size: 18px; font-weight: 600; color: var(--lh-text); line-height: 1.3; }
.lh-format-desc { font-size: 14px; color: var(--lh-muted); line-height: 1.55; font-family: var(--ff-sans); flex: 1; }
.lh-format-link { font-size: 14px; color: var(--lh-accent); font-family: var(--ff-sans); margin-top: 8px; }

/* ── КАРТОЧКИ МК ── */
.lh-mk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lh-mk-card { background: var(--lh-bg2); border: 1px solid var(--lh-line); border-radius: var(--lh-r); overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: box-shadow 0.15s, transform 0.15s; }
.lh-mk-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.10); transform: translateY(-3px); color: inherit; text-decoration: none; }
.lh-mk-img { height: 180px; position: relative; flex-shrink: 0; overflow: hidden; }
.lh-mk-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lh-mk-badge { position: absolute; top: 12px; left: 12px; background: var(--lh-accent); color: #fff; font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 20px; font-family: var(--ff-sans); letter-spacing: 0.5px; }
.lh-mk-badge-full { background: var(--lh-muted); }
.lh-mk-body { padding: 18px 18px 16px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.lh-mk-date-row { display: flex; align-items: center; justify-content: space-between; }
.lh-mk-date { display: flex; align-items: baseline; gap: 5px; }
.lh-mk-day { font-family: var(--ff-serif); font-size: 32px; font-weight: 600; color: var(--lh-accent); line-height: 1; }
.lh-mk-month { font-size: 14px; color: var(--lh-muted); font-family: var(--ff-sans); }
.lh-mk-time { font-size: 13px; color: var(--lh-muted); font-family: var(--ff-sans); }
.lh-mk-title { font-family: var(--ff-serif); font-size: 17px; font-weight: 600; color: var(--lh-text); line-height: 1.3; }
.lh-mk-desc { font-size: 13px; color: var(--lh-muted); line-height: 1.5; font-family: var(--ff-sans); flex: 1; }
.lh-mk-desc ol { padding-left: 16px; margin: 0; }
.lh-mk-desc ol li { margin-bottom: 3px; }
.lh-mk-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--lh-line); margin-top: auto; }
.lh-mk-price { font-family: var(--ff-serif); font-size: 20px; font-weight: 600; color: var(--lh-text); }
.lh-mk-price-old { font-size: 14px; color: var(--lh-hint); text-decoration: line-through; font-weight: 400; margin-right: 4px; }
.lh-mk-btn { background: var(--lh-accent); color: #fff; font-size: 13px; font-weight: 500; padding: 8px 16px; border-radius: 6px; font-family: var(--ff-sans); transition: background 0.15s; }
.lh-mk-card:hover .lh-mk-btn { background: #a06a38; }
.lh-mk-btn-full { background: var(--lh-hint); }
.lh-no-mk { font-size: 15px; color: var(--lh-muted); font-family: var(--ff-sans); padding: 32px 0; grid-column: 1/-1; }

/* ── ОНЛАЙН-БАННЕР ── */
.lh-online-banner { display: flex; align-items: stretch; background: var(--lh-dark); border-radius: var(--lh-r); overflow: hidden; margin-bottom: 64px; }
.lh-online-img { width: 340px; height: auto; object-fit: cover; flex-shrink: 0; display: block; opacity: 0.75; }
.lh-online-body { padding: 36px 40px; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.lh-online-eyebrow { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--lh-accent2); font-weight: 500; font-family: var(--ff-sans); }
.lh-online-title { font-family: var(--ff-serif); font-size: 24px; font-weight: 600; color: #fff; line-height: 1.25; }
.lh-online-desc { font-size: 14px; color: rgba(255,255,255,0.7); font-family: var(--ff-sans); line-height: 1.5; }
.lh-online-btn { display: inline-block; background: var(--lh-accent); color: #fff; padding: 11px 24px; border-radius: 7px; font-size: 14px; font-weight: 500; text-decoration: none; font-family: var(--ff-sans); margin-top: 6px; align-self: flex-start; transition: background 0.15s; }
.lh-online-btn:hover { background: #a06a38; color: #fff; }

/* ── ОТЗЫВЫ ── */
.lh-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lh-review { background: var(--lh-bg2); border: 1px solid var(--lh-line); border-radius: var(--lh-r); padding: 22px 20px; display: flex; flex-direction: column; gap: 12px; }
.lh-review-tag { display: inline-block; background: var(--lh-bg3); color: var(--lh-muted); font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 20px; font-family: var(--ff-sans); letter-spacing: 0.5px; text-transform: uppercase; align-self: flex-start; }
.lh-review-text { font-size: 14px; color: var(--lh-text); line-height: 1.65; font-style: italic; font-family: var(--ff-sans); flex: 1; }
.lh-review-author { display: flex; align-items: center; justify-content: space-between; }
.lh-review-name { font-size: 14px; font-weight: 500; color: var(--lh-text); font-family: var(--ff-sans); }
.lh-review-stars { color: var(--lh-accent); font-size: 14px; letter-spacing: 1px; }

/* ── ГАЛЕРЕЯ ── */
.lh-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 200px 200px; gap: 12px; }
.lh-gallery-item { background-size: cover; background-position: center; border-radius: 10px; }
.lh-gallery-big { grid-row: 1 / 3; }

/* ── АДАПТИВ ── */
@media (max-width: 720px) {
  .lh-hero { height: 380px; }
  .lh-hero-body { width: 85%; padding: 28px 20px; }
  .lh-hero-grad { background: linear-gradient(to right, rgba(249,247,244,0.97) 0%, rgba(249,247,244,0.92) 50%, rgba(249,247,244,0.3) 80%, rgba(249,247,244,0) 100%); }
  .lh-hero-h1 { font-size: 28px; }
  .lh-hero-sub { font-size: 13px; }
  .lh-hero-btns { flex-direction: column; gap: 10px; }
  .lh-btn-primary, .lh-btn-secondary { text-align: center; }
  .lh-stats { grid-template-columns: 1fr; gap: 0; }
  .lh-stat { border-bottom: 1px solid var(--lh-line); }
  .lh-stat:last-child { border-bottom: none; }
  .lh-formats { grid-template-columns: 1fr; }
  .lh-mk-grid { grid-template-columns: 1fr; }
  .lh-reviews { grid-template-columns: 1fr; }
  .lh-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
  .lh-gallery-big { grid-row: auto; }
  .lh-section-h2 { font-size: 26px; }
  .lh-online-banner { flex-direction: column; }
  .lh-online-img { width: 100%; height: 200px; }
  .lh-online-body { padding: 24px 20px; }
}
	
	/* ── Фикс карточек форматов ── */
.lh-format-col { 
  float: left !important; 
  box-sizing: border-box !important; 
}
.lh-formats { margin: 0; overflow: hidden; }
.lh-format-col:first-child { padding-left: 0 !important; }
.lh-format-col:last-child { padding-right: 0 !important; }
.lh-format-card { display: block; background: var(--lh-bg2); border: 1px solid var(--lh-line); border-radius: var(--lh-r); overflow: hidden; text-decoration: none; color: inherit; }
.lh-format-card-img { width: 100%; height: 200px; object-fit: cover; display: block; float: none !important; }

@media (max-width: 720px) {
  .lh-format-col { float: none; width: 100%; margin-bottom: 16px; }
}