
@import url('assets/fonts/fonts-f26efe97.css');

:root {
  --bg: #151111;
  --bg-soft: #211817;
  --text: #fff8ef;
  --muted: #c8b8ab;
  --accent: #d9a86c;
  --accent-2: #f4d4a6;
  --glass: rgba(255, 248, 239, 0.09);
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background: radial-gradient(circle at 12% 8%, rgba(217,168,108,.18), transparent 34%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow { color: var(--accent-2); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700; }
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.05; margin: 0; }
h1 { font-size: clamp(46px, 8vw, 104px); max-width: 980px; }
h2 { font-size: clamp(34px, 5vw, 64px); margin-bottom: 20px; }
p { color: var(--muted); margin: 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: 999px; border: 1px solid var(--border);
  font-weight: 800; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn.primary { background: var(--accent); color: #170e0a; box-shadow: 0 16px 38px rgba(217,168,108,.25); }
.btn.secondary { background: rgba(255,255,255,.08); color: var(--text); backdrop-filter: blur(12px); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 46px rgba(0,0,0,.3); }
.header {
  position: fixed; top: 18px; left: 0; right: 0; z-index: 20;
}
.nav {
  width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  border: 1px solid var(--border); border-radius: 999px;
  background: rgba(21,17,17,.62); backdrop-filter: blur(20px); box-shadow: var(--shadow);
}
.logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; }
.nav-links { display: flex; gap: 22px; font-size: 14px; color: var(--muted); }
.phone { color: var(--accent-2); font-weight: 800; white-space: nowrap; }
.hero {
  min-height: 100vh; display: grid; align-items: end; padding: 150px 0 76px;
  background: linear-gradient(90deg, rgba(12,8,8,.88), rgba(12,8,8,.42)), var(--hero) center/cover no-repeat;
}
.hero-content { max-width: 980px; }
.hero p { font-size: clamp(18px, 2vw, 24px); max-width: 720px; margin: 28px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 54px; max-width: 780px; }
.stat { background: var(--glass); border: 1px solid var(--border); border-radius: 24px; padding: 22px; backdrop-filter: blur(18px); }
.stat b { display: block; font-size: 34px; color: var(--accent-2); font-family: 'Playfair Display', serif; }
section { padding: 105px 0; }
.split { display: grid; grid-template-columns: 1fr .85fr; gap: 54px; align-items: center; }
.photo-card { border-radius: 34px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.photo-card img { height: 580px; width: 100%; object-fit: cover; }
.facts { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 32px; }
.fact, .service, .step, .faq-item {
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  border: 1px solid var(--border); border-radius: 28px; padding: 26px; transition: transform .25s ease, border-color .25s ease;
}
.fact:hover, .service:hover, .step:hover { transform: translateY(-6px); border-color: rgba(217,168,108,.55); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 36px; }
.case { border-radius: 30px; overflow: hidden; background: var(--bg-soft); border: 1px solid var(--border); }
.case-img { overflow: hidden; height: 320px; }
.case img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.case:hover img { transform: scale(1.08); }
.case-body { padding: 24px; }
.process-grid, .services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 34px; }
.step-number { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: #150d09; font-weight: 900; margin-bottom: 28px; }
.services-grid { grid-template-columns: repeat(3,1fr); }
.price { margin: 18px 0; font-size: 34px; color: var(--accent-2); font-family: 'Playfair Display', serif; }
.faq-list { display: grid; gap: 14px; margin-top: 34px; }
.faq-question { width: 100%; background: none; border: 0; color: var(--text); font: inherit; font-weight: 800; display: flex; justify-content: space-between; cursor: pointer; text-align: left; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { padding-top: 16px; }
.faq-item.active .faq-answer { max-height: 180px; }
.contact-box {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; padding: 42px; border-radius: 38px;
  background: linear-gradient(135deg, rgba(217,168,108,.18), rgba(255,255,255,.06)); border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.lead-form { display: grid; gap: 14px; }
input, textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 18px; padding: 17px 18px;
  background: rgba(255,255,255,.08); color: var(--text); font: inherit; outline: none;
}
textarea { min-height: 130px; resize: vertical; }
.form-message.success { color: #b8ffcf; }
.form-message.error { color: #ffb7b7; }
.footer { padding: 36px 0; border-top: 1px solid var(--border); color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .split, .contact-box { grid-template-columns: 1fr; }
  .portfolio-grid, .process-grid, .services-grid, .hero-stats, .facts { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
}
