:root {
  --bg: #f8f3ee;
  --surface: rgba(255, 252, 248, 0.88);
  --surface-strong: #fffaf5;
  --text: #2b2523;
  --muted: #6d625d;
  --accent: #d8a4ad;
  --accent-strong: #bf8b94;
  --gold: #c5a46d;
  --line: rgba(64, 46, 43, 0.12);
  --shadow: 0 18px 55px rgba(70, 41, 36, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
  --heading: "Montserrat", "Segoe UI", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 164, 173, 0.22), transparent 32%),
    radial-gradient(circle at top right, rgba(197, 164, 109, 0.16), transparent 28%),
    linear-gradient(180deg, #fffaf6 0%, #f8f3ee 44%, #f4ede7 100%);
  line-height: 1.6;
}

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

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

strong {
  font-weight: 800;
  color: #3b2827;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(255, 248, 242, 0.82);
  border-bottom: 1px solid rgba(64, 46, 43, 0.08);
}

.header-inner,
.footer-grid,
.cta-inline,
.hero-actions,
.contact-strip,
.form-row,
.cards-grid,
.stats-grid,
.price-actions,
.filter-bar,
.social-links,
.top-links {
  display: flex;
  gap: 16px;
}

.header-inner {
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--heading);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(216, 164, 173, 0.95), rgba(197, 164, 109, 0.95));
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.brand-copy span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-copy b {
  display: block;
  font-size: 1.2rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
}

.site-nav ul,
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a,
.footer-nav a,
.top-links a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.site-nav a:hover,
.footer-nav a:hover,
.top-links a:hover {
  color: var(--text);
}

.header-side {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-link {
  font-weight: 700;
}

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

.social-chip {
  min-width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.button,
button,
input[type="submit"] {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-weight: 700;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent-strong), var(--gold));
  box-shadow: 0 16px 36px rgba(191, 139, 148, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

main section,
main article.page-hero,
.page-section {
  padding: 68px 0;
}

.hero {
  padding-top: 52px;
}

.hero-shell,
.page-hero-shell,
.cta-box,
.contact-panel,
.privacy-card,
.thanks-card {
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.92), rgba(255, 246, 240, 0.84));
  border: 1px solid rgba(64, 46, 43, 0.08);
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.hero-shell,
.page-hero-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  padding: 34px;
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(216, 164, 173, 0.12);
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  font-family: var(--heading);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.hero-copy p,
.page-hero-copy p {
  font-size: 1.05rem;
  max-width: 64ch;
}

.hero-visual,
.photo-card {
  position: relative;
  min-height: 480px;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
}

.hero-visual::before,
.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(50, 37, 36, 0.08), rgba(50, 37, 36, 0.25)),
    url("./images/hero-lashart.svg") center/cover no-repeat;
}

.hero-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 248, 244, 0.92);
  box-shadow: var(--shadow);
  max-width: 230px;
}

.hero-badge b {
  display: block;
  margin-bottom: 4px;
}

.stats-grid,
.cards-grid {
  flex-wrap: wrap;
}

.stats-grid .stat,
.cards-grid > *,
.gallery-item,
.review-card,
.price-card,
.news-card,
.master-card,
.contact-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(64, 46, 43, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(74, 49, 44, 0.07);
}

.stats-grid .stat {
  flex: 1 1 180px;
  padding: 22px;
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--accent-strong);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 60ch;
}

.cards-grid > * {
  flex: 1 1 240px;
  padding: 26px;
}

.service-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-strong);
}

.master-card img,
.gallery-item img,
.news-card img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  margin-bottom: 18px;
}

.news-card img {
  aspect-ratio: 1.35 / 1;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(216, 164, 173, 0.12);
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  padding: 14px;
}

.gallery-item button {
  width: 100%;
  background: transparent;
  padding: 0;
}

.gallery-item img {
  margin-bottom: 12px;
  aspect-ratio: 1 / 1;
}

.review-card,
.price-card,
.contact-card {
  padding: 24px;
}

.review-author {
  color: var(--text);
  font-weight: 800;
}

.cta-box,
.contact-panel,
.privacy-card,
.thanks-card {
  padding: 34px;
}

form {
  display: grid;
  gap: 16px;
}

.form-row {
  flex-wrap: wrap;
}

.form-row > * {
  flex: 1 1 220px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 18px;
  border: 1px solid rgba(64, 46, 43, 0.12);
  background: rgba(255, 255, 255, 0.88);
  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 0.92rem;
}

.contact-layout,
.footer-grid,
.about-grid {
  display: grid;
  gap: 22px;
}

.contact-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.map-embed iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 28px;
}

.anchor-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 36px;
}

.anchor-menu a,
.filter-button {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-weight: 700;
}

.filter-button.active {
  color: white;
  background: linear-gradient(135deg, var(--accent-strong), var(--gold));
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(74, 49, 44, 0.07);
}

th,
td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(64, 46, 43, 0.08);
}

th {
  background: rgba(216, 164, 173, 0.13);
  font-family: var(--heading);
}

.price-actions {
  margin-top: 24px;
}

.footer {
  padding: 34px 0 46px;
  border-top: 1px solid rgba(64, 46, 43, 0.08);
  background: rgba(255, 250, 245, 0.86);
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(64, 46, 43, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
}

.page-hero {
  padding-top: 38px;
}

.page-hero-shell {
  grid-template-columns: 1fr;
}

.contact-strip {
  flex-wrap: wrap;
  margin-top: 22px;
}

.contact-strip .tag {
  background: rgba(255, 255, 255, 0.75);
}

.info-list {
  display: grid;
  gap: 16px;
}

.info-list .item {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(64, 46, 43, 0.08);
}

.policies {
  display: grid;
  gap: 24px;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(27, 18, 18, 0.72);
  z-index: 80;
}

.lightbox.open {
  display: grid;
}

.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: min(100%, 900px);
  padding: 18px;
  border-radius: 32px;
  background: rgba(255, 248, 244, 0.98);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(43, 37, 35, 0.9);
  color: white;
}

.lightbox img {
  width: 100%;
  border-radius: 24px;
}

.hide {
  display: none !important;
}

@media (max-width: 980px) {
  .hero-shell,
  .page-hero-shell,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: fixed;
    inset: 84px 16px auto;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 248, 242, 0.98);
    box-shadow: var(--shadow);
    display: none;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-side .social-links,
  .header-side .phone-link {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero-shell,
  .page-hero-shell,
  .cta-box,
  .contact-panel,
  .privacy-card,
  .thanks-card {
    padding: 22px;
    border-radius: 28px;
  }

  .hero-visual,
  .photo-card {
    min-height: 320px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  th,
  td {
    padding: 14px 12px;
    font-size: 0.94rem;
  }
}
