:root {
  --bg: #100a06;
  --bg-soft: #1a1009;
  --card: rgba(255,255,255,.94);
  --card-dark: rgba(29,18,10,.9);
  --text: #21170f;
  --muted: #766456;
  --gold: #d5a541;
  --gold-soft: #f1d28a;
  --orange: #d96b1d;
  --orange-deep: #a83f0b;
  --line: rgba(51,31,17,.12);
  --shadow: 0 24px 70px rgba(0,0,0,.24);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(217,107,29,.24), transparent 34rem),
    radial-gradient(circle at 85% 20%, rgba(213,165,65,.18), transparent 28rem),
    linear-gradient(160deg, #0b0704 0%, #17100b 46%, #0b0704 100%);
  font-family: "Manrope", system-ui, sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
  pointer-events: none;
}
.ambient-one { width: 340px; height: 340px; background: #ff6a00; top: -140px; left: -100px; }
.ambient-two { width: 380px; height: 380px; background: #d3a13c; bottom: -180px; right: -120px; }

.shell {
  width: min(100% - 28px, 760px);
  margin: 0 auto;
  padding: 28px 0 48px;
  position: relative;
  z-index: 1;
}

.card {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,242,.95));
  padding: 34px 28px 30px;
  text-align: center;
}

.brandmark {
  width: 112px;
  height: 112px;
  margin: 0 auto 22px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(190,76,7,.23);
}
.brandmark img { width: 100%; height: 100%; object-fit: cover; }

.eyebrow,
.section-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange-deep);
}

h1, h2 { margin: 0; }
h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 9vw, 72px);
  line-height: .98;
  letter-spacing: -.04em;
}
h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 6vw, 45px);
  line-height: 1.05;
  letter-spacing: -.025em;
}

.subtitle {
  max-width: 520px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 3.5vw, 21px);
  line-height: 1.55;
}

.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 56px;
  padding: 0 20px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 14px 28px rgba(180,66,10,.25);
}
.button.secondary {
  color: #754018;
  border-color: rgba(191,112,32,.24);
  background: linear-gradient(180deg, #fffaf0, #f7ead3);
}

.menu {
  margin-top: 16px;
  background: rgba(255,255,255,.94);
  overflow: hidden;
}
.menu a, .menu button {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
  transition: background .16s ease, padding-left .16s ease;
}
.menu > :last-child { border-bottom: 0; }
.menu a:hover, .menu button:hover {
  background: #fff8ed;
  padding-left: 29px;
}
.menu span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .08em;
}

.about {
  margin-top: 16px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  background: rgba(255,255,255,.96);
}
.portrait-wrap {
  min-height: 390px;
  border-radius: 22px;
  overflow: hidden;
  background: #eee7df;
}
.portrait-wrap img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: 49% 35%;
}
.about-copy { padding: 12px 12px 12px 0; }
.about-copy p:last-child,
.consultation > p,
.contacts-head > p {
  color: var(--muted);
  line-height: 1.7;
}

.consultation {
  margin-top: 16px;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(76,35,10,.96), rgba(23,14,8,.98));
}
.consultation .section-label { color: var(--gold-soft); }
.consultation > p { color: rgba(255,255,255,.7); max-width: 560px; }
.consultation .button { margin-top: 10px; }

.contacts {
  margin-top: 16px;
  padding: 28px;
  background: rgba(255,255,255,.96);
}
.contacts-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}
.contacts-head > p { margin: 0; }
.contact-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.contact-grid a {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffaf4;
  font-weight: 800;
  transition: transform .16s ease, border-color .16s ease;
}
.contact-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(217,107,29,.45);
}

footer {
  padding: 26px 8px 0;
  color: rgba(255,255,255,.54);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 10;
  max-width: calc(100% - 30px);
  transform: translate(-50%, 20px);
  padding: 13px 18px;
  border-radius: 999px;
  color: white;
  background: rgba(20,12,7,.94);
  box-shadow: 0 16px 36px rgba(0,0,0,.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 640px) {
  .shell { width: min(100% - 18px, 760px); padding-top: 10px; }
  .hero { padding: 28px 18px 22px; border-radius: 24px; }
  .brandmark { width: 94px; height: 94px; border-radius: 25px; }
  .quick-actions { grid-template-columns: 1fr; }
  .menu, .about, .consultation, .contacts { border-radius: 24px; }
  .about { grid-template-columns: 1fr; padding: 12px; }
  .portrait-wrap, .portrait-wrap img { min-height: 410px; }
  .about-copy { padding: 12px 10px 14px; }
  .consultation, .contacts { padding: 24px 20px; }
  .contacts-head { display: block; }
  .contacts-head > p { margin-top: 8px; }
  .contact-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 2px; }
}
