:root {
  --bg: #161512;
  --bg-soft: #211f1a;
  --card: #fbf4e8;
  --text: #f7efe2;
  --muted: #cbbfae;
  --ink: #201b15;
  --accent: #d7a85b;
  --accent-dark: #a77229;
  --line: rgba(255,255,255,.14);
  --glass: rgba(24,22,18,.68);
  --shadow: 0 30px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Raleway", sans-serif;
  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; }
.section { padding: 110px 0; position: relative; }
.section-label {
  color: var(--accent);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 14px;
}
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.02;
  margin: 0;
}
h1 { font-size: clamp(46px, 7vw, 96px); max-width: 980px; }
h2 { font-size: clamp(34px, 4.2vw, 62px); }
h3 { font-size: 24px; }
p { margin: 0; color: var(--muted); }

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(16,15,13,.58);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 50px rgba(0,0,0,.18);
}
.logo {
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo span {
  display: inline-block;
  margin-left: 7px;
  color: var(--accent);
  font-family: "Playfair Display", serif;
  text-transform: none;
}
.nav { display: flex; gap: 20px; margin-left: auto; }
.nav a { font-size: 14px; color: rgba(255,255,255,.78); transition: color .25s; }
.nav a:hover { color: #fff; }
.phone {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-weight: 800;
}
.burger { display: none; }

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 70px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/img/photo-1501339847302-ac426a4a7cbb-ab2a1897.jpg") center/cover no-repeat;
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,13,11,.9) 0%, rgba(14,13,11,.68) 45%, rgba(14,13,11,.2) 100%),
              linear-gradient(0deg, rgba(22,21,18,1) 0%, rgba(22,21,18,0) 36%);
}
.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid rgba(215,168,91,.45);
  border-radius: 999px;
  background: rgba(0,0,0,.2);
  color: #ffe0aa;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 22px;
}
.hero-text { max-width: 720px; margin-top: 24px; font-size: 19px; color: rgba(255,255,255,.8); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--accent); color: #17130e; box-shadow: 0 18px 50px rgba(215,168,91,.28); }
.btn-primary:hover { background: #e9bd73; }
.btn-secondary { border-color: rgba(255,255,255,.24); color: #fff; background: rgba(255,255,255,.08); }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 52px;
  max-width: 760px;
}
.hero-proof div, .step, .price-card, .pain-list article {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  border-radius: 28px;
  padding: 22px;
}
.hero-proof strong, .stats strong {
  display: block;
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 38px;
  line-height: 1;
}
.hero-proof span, .stats span { color: var(--muted); font-size: 14px; }

.grid-2 { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.pain-section { background: radial-gradient(circle at 20% 10%, rgba(215,168,91,.14), transparent 38%); }
.pain-list { display: grid; gap: 16px; }
.pain-list article span {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .12em;
}
.pain-list h3 { margin: 8px 0 8px; }

.about { background: var(--card); color: var(--ink); }
.about p { color: #6d6254; }
.about .section-label { color: var(--accent-dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-photo {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img { height: 620px; width: 100%; object-fit: cover; }
.about-copy p:not(.section-label) { margin-top: 22px; font-size: 18px; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.stats div {
  padding: 20px;
  border-radius: 24px;
  background: #fffaf2;
  border: 1px solid #eadbc4;
}
.stats strong { color: var(--ink); }

.section-head { max-width: 790px; margin-bottom: 46px; }
.section-head p:last-child { margin-top: 16px; font-size: 18px; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.menu-card {
  overflow: hidden;
  border-radius: 30px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  transition: transform .25s, border-color .25s;
}
.menu-card:hover { transform: translateY(-7px); border-color: rgba(215,168,91,.45); }
.menu-card img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  transition: transform .55s;
}
.menu-card:hover img { transform: scale(1.08); }
.menu-card div { padding: 22px; }
.menu-card p { margin-top: 10px; }

.process { background: #11100e; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #16120c;
  font-weight: 900;
  margin-bottom: 22px;
}
.step p { margin-top: 12px; }

.pricing { background: var(--card); color: var(--ink); }
.pricing p { color: #6d6254; }
.pricing .section-label { color: var(--accent-dark); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card {
  background: #fffaf2;
  border-color: #e8dcc8;
  color: var(--ink);
  min-height: 310px;
  display: flex;
  flex-direction: column;
}
.price-card p { margin-top: 14px; }
.price-card strong {
  margin-top: auto;
  font-size: 34px;
  font-family: "Playfair Display", serif;
}
.price-card a {
  margin-top: 22px;
  color: var(--accent-dark);
  font-weight: 900;
}
.price-card.featured { background: #1b1712; color: #fff; transform: translateY(-14px); }
.price-card.featured p { color: var(--muted); }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.accordion { display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.05);
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 22px;
  text-align: left;
  font: 800 17px "Raleway", sans-serif;
  cursor: pointer;
}
.faq-item div {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item div p { padding: 0 22px 22px; }
.faq-item.active div { max-height: 180px; }

.contact {
  background: linear-gradient(135deg, #1a1814, #302719);
}
.contact-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
  padding: 44px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 38px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.contact-card h2 { margin-bottom: 18px; }
.lead-form { display: grid; gap: 14px; }
label { display: grid; gap: 8px; color: rgba(255,255,255,.75); font-size: 13px; font-weight: 800; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.24);
  color: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  font: 500 16px "Raleway", sans-serif;
  outline: none;
}
textarea { min-height: 118px; resize: vertical; }
input:focus, textarea:focus { border-color: rgba(215,168,91,.75); }
.form-message { min-height: 24px; font-weight: 800; }

.footer { padding: 34px 0; background: #0c0b0a; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; justify-content: space-between; font-size: 14px; }
.footer a:not(.logo) { color: var(--accent); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { inset: 12px; border-radius: 28px; flex-wrap: wrap; }
  .nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; display: none; }
  .nav.open { display: flex; }
  .burger {
    display: grid;
    gap: 5px;
    margin-left: auto;
    background: transparent;
    border: 0;
  }
  .burger span { width: 24px; height: 2px; background: #fff; display: block; }
  .phone { margin-left: 0; }
  .grid-2, .about-grid, .faq-grid, .contact-card { grid-template-columns: 1fr; }
  .cards, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .section { padding: 78px 0; }
  .hero { padding-top: 170px; }
  .hero-proof, .stats, .cards, .steps, .price-grid { grid-template-columns: 1fr; }
  .about-photo img { height: 380px; }
  .contact-card { padding: 26px; }
  .phone { width: 100%; text-align: center; }
}
