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

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

:root {
  --gold: #b8924a;
  --gold-light: #d4a85e;
  --bg: #faf8f5;
  --bg2: #f2ede6;
  --bg3: #ebe4d8;
  --text: #1a1714;
  --text-muted: #6b6560;
  --text-dim: #a09890;
  --border: rgba(26,23,20,0.1);
  --border-gold: rgba(184,146,74,0.35);
  --white: #ffffff;
}

html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; font-size: 15px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 40px; height: 68px;
  background: rgba(250,248,245,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 22px; letter-spacing: 0.04em; color: var(--text); }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 9px 22px; border: 1.5px solid var(--gold); color: var(--gold);
  background: transparent; cursor: pointer; border-radius: 3px; transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold); color: #fff; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all 0.3s; }

/* HERO */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; padding-top: 68px;
}
.hero-left {
  padding: 80px 64px 80px 40px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--border);
  background: var(--white);
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px; display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1.5px; background: var(--gold); }
.hero-title { font-family: 'Playfair Display', serif; font-size: 56px; line-height: 1.1; margin-bottom: 24px; color: var(--text); }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 15px; font-weight: 300; color: var(--text-muted); line-height: 1.9; max-width: 360px; margin-bottom: 44px; }
.hero-actions { display: flex; gap: 16px; align-items: center; margin-bottom: 56px; flex-wrap: wrap; }
.btn-primary {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 32px; background: var(--gold); color: #fff;
  border: none; cursor: pointer; border-radius: 3px; transition: background 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost {
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); background: transparent; border: none; cursor: pointer;
  transition: color 0.2s; display: inline-block;
}
.btn-ghost:hover { color: var(--text); }
.hero-badges { display: flex; gap: 24px; flex-wrap: wrap; }
.badge { display: flex; align-items: center; gap: 8px; }
.badge-icon { font-size: 15px; color: var(--gold); }
.badge-text { font-size: 12px; font-weight: 400; color: var(--text-muted); }

.hero-right { position: relative; background: var(--bg2); overflow: hidden; }
.hero-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
}
.hero-placeholder-icon { font-size: 64px; color: rgba(184,146,74,0.25); }
.hero-placeholder-text { font-size: 11px; letter-spacing: 0.2em; color: var(--text-dim); text-transform: uppercase; }
.hero-corner { position: absolute; width: 22px; height: 22px; }
.hero-corner.tl { top: 24px; left: 24px; border-top: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.hero-corner.tr { top: 24px; right: 24px; border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.hero-corner.bl { bottom: 24px; left: 24px; border-bottom: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.hero-corner.br { bottom: 24px; right: 24px; border-bottom: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.hero-badge-overlay {
  position: absolute; bottom: 40px; right: 40px;
  background: var(--white); border: 1px solid var(--border-gold);
  padding: 14px 20px; border-radius: 6px;
  box-shadow: 0 4px 24px rgba(26,23,20,0.08);
}
.hero-badge-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 4px; }
.hero-badge-label { font-size: 11px; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase; }

/* STATS BAR */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--white);
}
.stat { padding: 28px 20px; border-right: 1px solid var(--border); text-align: center; }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--gold); margin-bottom: 4px; }
.stat-label { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); }

/* SECTIONS */
.section { padding: 80px 40px; }
.section-alt { background: var(--bg2); }
.section-header { margin-bottom: 48px; }
.section-eyebrow { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; font-weight: 500; }
.section-title { font-family: 'Playfair Display', serif; font-size: 38px; color: var(--text); }
.section-sub { font-size: 15px; font-weight: 300; color: var(--text-muted); line-height: 1.85; max-width: 500px; margin-top: 14px; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.service-card {
  background: var(--white); padding: 36px 28px;
  cursor: default; transition: background 0.2s;
}
.service-card:hover { background: var(--bg); }
.service-icon { font-size: 26px; color: var(--gold); margin-bottom: 18px; }
.service-name { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--text); margin-bottom: 12px; }
.service-desc { font-size: 13px; font-weight: 400; color: var(--text-muted); line-height: 1.85; margin-bottom: 22px; }
.service-from { font-size: 11px; letter-spacing: 0.1em; color: var(--text-dim); text-transform: uppercase; margin-bottom: 4px; font-weight: 500; }
.service-price { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--text); }
.service-link { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; transition: opacity 0.2s; font-weight: 500; }
.service-link:hover { opacity: 0.7; }

/* PRICE PAGE */
.price-section { padding: 80px 40px; }
.price-category { margin-bottom: 56px; }
.price-cat-title {
  font-family: 'Playfair Display', serif; font-size: 22px; color: var(--text);
  border-bottom: 1.5px solid var(--border); padding-bottom: 16px; margin-bottom: 4px;
  display: flex; align-items: center; gap: 12px;
}
.price-cat-title i { font-size: 20px; color: var(--gold); }
.price-table { width: 100%; border-collapse: collapse; }
.price-table tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.price-table tr:hover { background: var(--bg2); }
.price-table td { padding: 13px 8px; font-size: 14px; }
.price-table td:first-child { color: var(--text); font-weight: 400; }
.price-table td:last-child { color: var(--gold); text-align: right; font-family: 'Playfair Display', serif; font-size: 16px; white-space: nowrap; font-weight: 600; }
.price-note { font-size: 12px; color: var(--text-dim); margin-top: 10px; font-style: italic; }

/* BOOKING */
.booking-section { padding: 100px 40px 80px; }
.booking-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.booking-info h2 { font-family: 'Playfair Display', serif; font-size: 38px; margin-bottom: 20px; color: var(--text); }
.booking-info p { font-size: 14px; font-weight: 400; color: var(--text-muted); line-height: 1.85; margin-bottom: 14px; }
.booking-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.booking-detail-icon { font-size: 18px; color: var(--gold); margin-top: 1px; flex-shrink: 0; }
.booking-detail-text { font-size: 14px; font-weight: 400; color: var(--text-muted); line-height: 1.7; }
.booking-hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.hours-block { padding: 18px; border: 1px solid var(--border); border-radius: 6px; background: var(--white); }
.hours-day { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; font-weight: 500; }
.hours-time { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--text); }
.yandex-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); border: 1px solid var(--border); padding: 11px 20px;
  border-radius: 3px; transition: all 0.2s; font-weight: 500;
}
.yandex-link:hover { border-color: var(--gold); color: var(--gold); }

/* FORM */
.booking-form { background: var(--white); padding: 40px; border-radius: 8px; border: 1px solid var(--border); box-shadow: 0 2px 24px rgba(26,23,20,0.06); }
.form-title { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 28px; color: var(--text); }
.form-group { margin-bottom: 20px; }
.form-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; display: block; font-weight: 600; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  background: var(--bg); border: 1px solid rgba(26,23,20,0.18);
  color: var(--text); font-family: 'Jost', sans-serif; font-size: 14px;
  border-radius: 4px; outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); background: var(--white); }
.form-textarea { resize: vertical; min-height: 88px; }
.form-select option { background: var(--white); color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; padding: 14px; margin-top: 8px;
  background: var(--gold); color: #fff;
  font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: 4px; transition: background 0.2s;
}
.form-submit:hover { background: var(--gold-light); }
.form-success { display: none; text-align: center; padding: 32px 0; }
.form-success-icon { font-size: 40px; color: var(--gold); margin-bottom: 14px; }

/* CONTACTS */
.contacts-section { padding: 100px 40px 80px; }
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-block { margin-bottom: 32px; }
.contact-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 10px; font-weight: 600; }
.contact-value { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--text); }
.contact-value a { transition: color 0.2s; }
.contact-value a:hover { color: var(--gold); }
.contact-value.gold { color: var(--gold); }
.map-frame { width: 100%; height: 340px; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; border: none; }

/* ABOUT */
.about-section { padding: 100px 40px 80px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 38px; margin-bottom: 24px; color: var(--text); }
.about-text p { font-size: 14px; font-weight: 400; color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.about-features { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature { padding: 20px; border: 1px solid var(--border); border-radius: 6px; background: var(--white); }
.feature-icon { font-size: 20px; color: var(--gold); margin-bottom: 10px; }
.feature-name { font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.feature-desc { font-size: 12px; font-weight: 400; color: var(--text-muted); line-height: 1.75; }
.about-visual { position: relative; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 3/4; background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 14px; border: 1px solid var(--border); border-radius: 4px;
}
.about-corner { position: absolute; width: 22px; height: 22px; }
.about-corner.tl { top: -10px; left: -10px; border-top: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.about-corner.br { bottom: -10px; right: -10px; border-bottom: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.yandex-card {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--white); border: 1px solid var(--border-gold);
  padding: 16px 22px; border-radius: 8px; box-shadow: 0 4px 20px rgba(26,23,20,0.08);
}
.yandex-card-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 5px; }
.yandex-card-label { font-size: 12px; letter-spacing: 0.08em; color: var(--text); font-weight: 600; }
.yandex-card-sub { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* FOOTER */
.footer {
  background: var(--text); color: rgba(250,248,245,0.85);
  padding: 56px 40px 32px;
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 14px; color: #faf8f5; }
.footer-logo span { color: var(--gold-light); }
.footer-tagline { font-size: 13px; font-weight: 300; color: rgba(250,248,245,0.5); line-height: 1.8; max-width: 240px; }
.footer-col-title { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,248,245,0.35); margin-bottom: 18px; font-weight: 600; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; font-weight: 400; color: rgba(250,248,245,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(250,248,245,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(250,248,245,0.3); }
.footer-vk { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(250,248,245,0.4); transition: color 0.2s; }
.footer-vk:hover { color: var(--gold-light); }

/* PAGE HEADER */
.page-header { padding: 120px 40px 60px; border-bottom: 1px solid var(--border); background: var(--white); }
.page-header-eyebrow { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; font-weight: 500; }
.page-header-eyebrow::before { content: ''; display: block; width: 32px; height: 1.5px; background: var(--gold); }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: 48px; color: var(--text); }
.page-header p { font-size: 15px; font-weight: 400; color: var(--text-muted); max-width: 520px; margin-top: 16px; line-height: 1.85; }

/* MOBILE */
@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-mobile { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 24px 20px; z-index: 99; flex-direction: column; gap: 20px; box-shadow: 0 8px 24px rgba(26,23,20,0.08); }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
  .nav-mobile .nav-cta { display: block; text-align: center; padding: 12px; color: var(--gold); border-color: var(--gold); }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 48px 20px; }
  .hero-title { font-size: 38px; }
  .hero-right { height: 300px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .booking-section { padding: 80px 20px 60px; }
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contacts-section { padding: 80px 20px 60px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .about-section { padding: 80px 20px 60px; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .page-header { padding: 100px 20px 40px; }
  .page-header h1 { font-size: 32px; }
  .price-section { padding: 80px 20px 60px; }
  .booking-hours-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer { padding: 48px 20px 28px; }
}

/* FILE UPLOAD */
.file-drop {
  border: 1.5px dashed var(--border);
  border-radius: 6px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--bg);
}
.file-drop:hover, .file-drop.drag-over {
  border-color: var(--gold);
  background: rgba(184,146,74,0.04);
}
.file-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; padding: 5px 12px;
  font-size: 12px; color: var(--text-muted);
}
.file-tag .remove {
  cursor: pointer; color: var(--text-dim); font-size: 14px;
  line-height: 1; transition: color 0.15s;
}
.file-tag .remove:hover { color: #c0392b; }
