:root {
  --bg: #0C0B09;
  --bg-2: #251E18;
  --panel: #14110D;
  --gold: #D7A84F;
  --gold-light: #E6C36A;
  --gold-dark: #9E7B4D;
  --gold-hi: #F0D58A;
  --white: #F5F5F2;
  --text-2: #D8D1C7;
  --muted: #A69A8A;
  --border: rgba(215, 168, 79, 0.22);
  --border-strong: rgba(215, 168, 79, 0.45);
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --display: "Cinzel", "Playfair Display", Georgia, serif;
  --sans: "Montserrat", "Poppins", "Inter", Arial, sans-serif;
  --script: "Great Vibes", "Allura", cursive;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--white);
  background:
    radial-gradient(900px 500px at 85% -5%, rgba(215, 168, 79, 0.07), transparent 60%),
    radial-gradient(700px 500px at -10% 40%, rgba(215, 168, 79, 0.05), transparent 60%),
    radial-gradient(800px 600px at 100% 90%, rgba(158, 123, 77, 0.06), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #0e0c09 50%, var(--bg) 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.lock {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0806;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-dark), var(--gold));
  border-radius: 8px;
  border: 2px solid #0a0806;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

section {
  scroll-margin-top: 90px;
}

.section {
  padding: 96px 0;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gold-text,
.hero-script,
.footer-logo,
.seal-script,
.phone-big strong {
  background: linear-gradient(115deg, var(--gold-light) 10%, var(--gold) 45%, var(--gold-dark) 70%, var(--gold-hi) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}

.script {
  font-family: var(--script);
  font-weight: 400;
}

.sec-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.sec-head h2,
.about-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 12px;
}

.sec-sub {
  color: var(--muted);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 16px;
  max-width: 340px;
}

.divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.divider.left {
  margin-inline: 0;
}

.divider-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  transform: rotate(-90deg);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-hi) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  color: #140F08;
  box-shadow: 0 6px 24px rgba(215, 168, 79, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(215, 168, 79, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline:hover {
  background: rgba(215, 168, 79, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(215, 168, 79, 0.2);
}

.btn-sm {
  padding: 11px 22px;
  font-size: 0.72rem;
  border-radius: 8px;
}

.btn-ic {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--d, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.d1 { --d: 0.12s; }
.d2 { --d: 0.24s; }
.d3 { --d: 0.36s; }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(12, 11, 9, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.nav.scrolled {
  background: rgba(10, 9, 7, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #171106;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold) 55%, var(--gold-dark));
  box-shadow: 0 0 0 1px rgba(240, 213, 138, 0.4), 0 4px 16px rgba(215, 168, 79, 0.3);
}

.brand-mark svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.8;
  transform: rotate(-90deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  background: linear-gradient(115deg, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: rgba(10, 9, 7, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu > a:not(.btn) {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.3s ease;
}

.mobile-menu > a:not(.btn):hover {
  color: var(--gold-light);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 520px at 82% 42%, rgba(215, 168, 79, 0.12), transparent 62%),
    radial-gradient(420px 420px at 12% 88%, rgba(158, 123, 77, 0.1), transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-top: 18px;
  line-height: 1.25;
}

.hero-title span {
  color: var(--gold);
  font-weight: 500;
  padding: 0 6px;
}

.hero-script {
  font-size: clamp(3.6rem, 8vw, 5.6rem);
  line-height: 1.15;
  margin-top: 6px;
  filter: drop-shadow(0 6px 22px rgba(215, 168, 79, 0.28));
}

.hero-sub {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 4px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
}

.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border-strong);
  background: var(--panel);
}

.img-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(240, 213, 138, 0.28);
  border-radius: 12px;
  z-index: 2;
  pointer-events: none;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.img-frame:hover img {
  transform: scale(1.045);
}

.hero-collage {
  position: relative;
  width: min(430px, 100%);
  margin-inline: auto;
}

.img-frame-hero {
  aspect-ratio: 2 / 3;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(215, 168, 79, 0.08);
}

.img-frame-accent {
  position: absolute;
  left: -54px;
  bottom: -44px;
  width: 56%;
  aspect-ratio: 14 / 9;
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 34px rgba(215, 168, 79, 0.18);
}

.img-frame-accent::before {
  inset: 8px;
}

.img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(200deg, rgba(12, 11, 9, 0) 55%, rgba(12, 11, 9, 0.55) 100%);
  pointer-events: none;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.offer-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  padding: 26px 24px;
  background: linear-gradient(160deg, #161210 0%, #0f0d0a 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), 0 0 32px rgba(215, 168, 79, 0.16);
}

.offer-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #171106;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold) 55%, var(--gold-dark));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 6px 18px rgba(215, 168, 79, 0.28);
}

.offer-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.7;
}

.offer-info {
  flex: 1 1 190px;
  min-width: 190px;
}

.offer-info h3 {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  overflow-wrap: break-word;
}

.offer-info p {
  color: var(--muted);
  font-size: 0.83rem;
  margin-top: 5px;
  line-height: 1.5;
}

.price-badge {
  flex-shrink: 0;
  margin-inline-start: auto;
  padding: 11px 16px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--gold-hi) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #140F08;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 6px 16px rgba(215, 168, 79, 0.25);
}

.bonus-wrap {
  padding-top: 0;
}

.bonus-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  text-align: left;
  padding: 48px 44px;
  border-radius: 22px;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(480px 260px at 12% 20%, rgba(215, 168, 79, 0.12), transparent 60%),
    linear-gradient(150deg, #191410 0%, #0f0d0a 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.bonus-card::before,
.bonus-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(240, 213, 138, 0.25);
  border-radius: 50%;
}

.bonus-card::before {
  top: -55px;
  right: -45px;
}

.bonus-card::after {
  bottom: -65px;
  left: -50px;
}

.bonus-icon {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #171106;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold) 55%, var(--gold-dark));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 10px 30px rgba(215, 168, 79, 0.35);
}

.bonus-icon svg {
  width: 40px;
  height: 40px;
}

.bonus-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bonus-text p {
  color: var(--text-2);
  margin-top: 8px;
  font-size: 1.02rem;
}

.bonus-text p strong {
  color: var(--gold-light);
}

.bonus-badge {
  display: inline-block;
  margin-top: 16px;
  padding: 9px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold) 55%, var(--gold-dark));
  color: #140F08;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.urgency {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, transparent, rgba(215, 168, 79, 0.07) 30%, rgba(215, 168, 79, 0.07) 70%, transparent);
}

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 0;
}

.urgency-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  animation: tick 2.4s ease-in-out infinite;
}

@keyframes tick {

  0%,
  100% {
    transform: rotate(0deg);
  }

  12% {
    transform: rotate(-14deg);
  }

  24% {
    transform: rotate(12deg);
  }

  36% {
    transform: rotate(0deg);
  }
}

.urgency p {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-2);
  text-align: center;
}

.urgency strong {
  color: var(--gold-light);
}

.seal-wrap {
  padding-bottom: 40px;
}

.seal-container {
  display: flex;
  justify-content: center;
}

.seal {
  position: relative;
  width: min(300px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 32% 26%, rgba(240, 213, 138, 0.13), transparent 58%),
    linear-gradient(160deg, #171310, #0e0c09);
  border: 1.5px solid var(--border-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 46px rgba(215, 168, 79, 0.12);
}

.seal::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px dashed rgba(215, 168, 79, 0.5);
  border-radius: 50%;
  animation: spin 46s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.seal-core {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.seal-top {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-2);
}

.seal-mid {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 6px;
}

.seal-script {
  font-size: 3rem;
  line-height: 1;
}

.seal-heart {
  width: 20px;
  height: 20px;
  color: var(--gold);
  margin-top: 10px;
  fill: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
  gap: 22px;
}

.service-card {
  padding: 34px 24px 30px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(170deg, #15110d 0%, #0e0c09 100%);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), 0 0 30px rgba(215, 168, 79, 0.14);
}

.service-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--border-strong);
  background: radial-gradient(circle at 35% 30%, rgba(215, 168, 79, 0.18), transparent 70%);
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.service-card:hover .service-icon {
  color: #171106;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold) 55%, var(--gold-dark));
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(215, 168, 79, 0.3);
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card p {
  color: var(--muted);
  font-size: 0.84rem;
  margin-top: 8px;
  min-height: 2.5em;
}

.service-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease, letter-spacing 0.3s ease;
}

.service-link:hover {
  color: var(--gold-hi);
  border-color: var(--gold-hi);
}

.about-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.img-frame-about {
  aspect-ratio: 5 / 5.6;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.about-content h2 {
  line-height: 1.2;
}

.about-content > p:not(.eyebrow) {
  color: var(--text-2);
  margin-top: 6px;
  max-width: 54ch;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 26px 0 34px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.about-list svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact {
  position: relative;
  text-align: center;
  background:
    radial-gradient(640px 380px at 50% 30%, rgba(215, 168, 79, 0.09), transparent 62%);
}

.contact-inner {
  max-width: 760px;
}

.contact-inner .sec-head {
  margin-bottom: 36px;
}

.phone-big {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--display);
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.phone-big svg {
  width: clamp(26px, 5vw, 44px);
  height: clamp(26px, 5vw, 44px);
  color: var(--gold);
  stroke-width: 1.5;
}

.phone-big:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
}

.contact-location {
  margin-top: 22px;
  color: var(--text-2);
}

.contact-location p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.contact-location svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
}

.contact-location p:first-child {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-location p:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
}

.footer {
  background: #0a0806;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 44px;
  padding: 64px 0 40px;
}

.footer-logo {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.footer-salon {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.56em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 2px;
}

.footer-tag-serif {
  font-family: var(--serif);
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-top: 18px;
}

.footer-tag-serif span {
  color: var(--gold-dark);
  padding: 0 4px;
}

.footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-links a {
  position: relative;
  font-size: 0.86rem;
  color: var(--text-2);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-2);
  margin-bottom: 12px;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-tagline {
  font-family: var(--script);
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  text-align: center;
  color: var(--gold-light);
  padding: 8px 0 34px;
}

.footer-bottom {
  border-top: 1px solid rgba(215, 168, 79, 0.14);
  padding: 18px 0;
}

.footer-bottom p {
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }

  .about-inner {
    gap: 44px;
  }
}

@media (max-width: 860px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-media {
    order: -1;
    max-width: 440px;
    margin-inline: auto;
    width: 100%;
    padding-bottom: 36px;
  }

  .hero-collage {
    width: min(380px, 86%);
  }

  .img-frame-hero {
    aspect-ratio: 4 / 5;
  }

  .img-frame-accent {
    left: -12px;
    bottom: -28px;
    width: 50%;
  }

  .hero-btns {
    justify-content: center;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-media {
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-brand {
    order: -1;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-links {
    align-items: center;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 72px 0;
  }

  .img-frame-accent {
    left: -6px;
    bottom: -18px;
  }

  .bonus-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 26px;
  }

  .bonus-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-btns .btn {
    width: 100%;
    max-width: 320px;
  }

  .about-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== Booking Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 9, 7, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(160deg, #161210 0%, #0f0d0a 100%);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 32px 28px;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(215, 168, 79, 0.15);
}

.modal-overlay:not([hidden]) .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(215, 168, 79, 0.12);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.modal-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #140F08;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-header h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(115deg, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.modal-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 6px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row:has(.form-group:only-child) {
  flex-direction: column;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}

.required {
  color: var(--gold);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--white);
  background: #0f0d0a;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.form-group input::placeholder {
  color: var(--muted);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(215, 168, 79, 0.15);
  background: #14110D;
}

.form-group input.error,
.form-group select.error {
  border-color: #e55c5c;
  box-shadow: 0 0 0 3px rgba(229, 92, 92, 0.15);
}

.error-message {
  font-size: 0.7rem;
  color: #e55c5c;
  min-height: 1em;
  letter-spacing: 0.02em;
}

.services-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 44px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(215, 168, 79, 0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-2);
}

.service-chip .chip-name {
  font-weight: 600;
  color: var(--white);
}

.service-chip .chip-price {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  background: linear-gradient(115deg, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-chip .chip-remove {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(229, 92, 92, 0.15);
  border: 1px solid #e55c5c;
  color: #e55c5c;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 0.7rem;
  line-height: 1;
  transition: background 0.3s ease, color 0.3s ease;
}

.service-chip .chip-remove:hover {
  background: #e55c5c;
  color: #fff;
}

.add-service-row {
  display: flex;
  gap: 10px;
}

.service-dropdown {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--white);
  background: #0f0d0a;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.service-dropdown:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(215, 168, 79, 0.15);
  background: #14110D;
}

.services-summary {
  padding: 16px;
  background: rgba(215, 168, 79, 0.08);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.summary-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.summary-total {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(115deg, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-2);
}

.summary-item-price {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(115deg, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn-full {
  width: 100%;
  padding: 16px;
  font-size: 0.8rem;
  margin-top: 4px;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(160deg, #161210 0%, #0f0d0a 100%);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 24px rgba(215, 168, 79, 0.12);
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.4s ease;
  pointer-events: auto;
  min-width: 280px;
  max-width: 380px;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.success {
  border-left: 4px solid #4ade80;
}

.toast.error {
  border-left: 4px solid #e55c5c;
}

.toast-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.toast.success .toast-icon {
  color: #4ade80;
}

.toast.error .toast-icon {
  color: #e55c5c;
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}

.toast-message {
  font-size: 0.78rem;
  color: var(--text-2);
  margin-top: 2px;
}

@media (max-width: 560px) {
  .modal-container {
    padding: 24px 20px;
    border-radius: 16px;
  }
  
  .modal-header h2 {
    font-size: 1.35rem;
  }
  
  .form-row {
    gap: 14px;
  }
  
  .toast-container {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  
  .toast {
    min-width: auto;
    max-width: none;
  }
}
