﻿:root {
  --ink: #0b0b0b;
  --white: #ffffff;
  --pink: #f7a8c9;
  --hot: #e34386;
  --rose: #fde8f2;
  --shadow: 0 24px 50px rgba(11, 11, 11, 0.15);
  --radius: 28px;
}

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

body {
  font-family: "Work Sans", sans-serif;
  color: var(--ink);
  background: linear-gradient(160deg, #ffffff 0%, #fde8f2 55%, #f9c5dd 100%);
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: "Fraunces", serif;
  font-weight: 600;
}

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

.bg-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 11, 11, 0.08);
}

.scroll-banner {
  position: sticky;
  top: 86px;
  z-index: 9;
  overflow: hidden;
  background: #0f0b0d;
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.scroll-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: banner-scroll 18s linear infinite;
}

.scroll-track span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

@keyframes banner-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

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

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-title {
  display: block;
  font-weight: 600;
  font-size: 18px;
}

.brand-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #3b2c32;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(11, 11, 11, 0.2);
  background: transparent;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(11, 11, 11, 0.15);
  background: #fff;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--ink);
}

.social-popup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  color: var(--ink);
  padding: 16px 18px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 11, 11, 0.08);
  max-width: 260px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 20;
}

.social-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.popup-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.social-popup p {
  font-size: 13px;
  line-height: 1.4;
  margin-top: 8px;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
  padding: 96px 8vw 72px;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin: 16px 0 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  color: var(--hot);
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2b1e23;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn {
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(11, 11, 11, 0.2);
  box-shadow: none;
}

.btn-small {
  padding: 10px 18px;
  font-size: 13px;
}

.hero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat-number {
  font-size: 20px;
  font-weight: 600;
  display: block;
}

.like-button {
  margin-top: 10px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(11, 11, 11, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.like-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.like-burst {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 12px;
  color: var(--hot);
  opacity: 0;
  transform: translateY(4px);
  animation: like-burst 0.9s ease forwards;
  pointer-events: none;
}

.like-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

@keyframes like-burst {
  0% {
    opacity: 0;
    transform: translateY(6px) scale(0.9);
  }
  30% {
    opacity: 1;
    transform: translateY(-2px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(1.05);
  }
}

.hero-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 11, 11, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #5f4952;
}

.hero-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.section {
  padding: 72px 8vw;
}

.section-header {
  margin-bottom: 36px;
  max-width: 620px;
}

.cards,
.team-grid,
.price-grid,
.testimonials-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 11, 11, 0.06);
}

.card ul {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 8px;
  color: #402b32;
}

.team {
  background: var(--rose);
}

.team-member {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--hot);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  margin-bottom: 12px;
}

.price-card {
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(11, 11, 11, 0.06);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.price-note {
  color: #46313a;
}

.pdf-frame {
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: 16px;
  overflow: hidden;
  height: 360px;
  background: #fff;
}

.pdf-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

.catalog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.catalog-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 11, 11, 0.06);
  overflow: hidden;
  display: grid;
}

.catalog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.catalog-body {
  padding: 18px 20px 22px;
  display: grid;
  gap: 10px;
}

.catalog-body p {
  color: #3b2c32;
  line-height: 1.5;
  font-size: 14px;
}

.catalog-price {
  font-weight: 600;
  color: var(--hot);
}

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

.gallery-column h3 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  margin-bottom: 18px;
}

.gallery-item {
  margin: 0;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 11, 11, 0.06);
  display: grid;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  padding: 14px 16px 18px;
  font-weight: 600;
  color: #2b1e23;
}

.testimonial {
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  font-style: italic;
}

.testimonial span {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-weight: 600;
}

.review-summary {
  margin-top: 14px;
  color: #3b2c32;
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-style: normal;
  font-weight: 600;
  color: #2b1e23;
  margin-top: 12px;
}

.review-score {
  font-size: 14px;
  color: var(--hot);
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-stars {
  font-size: 16px;
  letter-spacing: 2px;
  color: #f2a93b;
}

.rating-stars {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  letter-spacing: 2px;
  color: #f2a93b;
  margin-top: 6px;
}

.hero-stats .rating-stars {
  margin-top: 8px;
}

.rating-star {
  position: relative;
  display: inline-block;
  width: 1em;
  line-height: 1;
  color: rgba(242, 169, 59, 0.3);
}

.rating-star::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: var(--fill, 0%);
  overflow: hidden;
  color: #f2a93b;
}

.review-value {
  font-size: 12px;
  color: #6b4b57;
}

.review-form {
  margin-top: 32px;
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 11, 11, 0.06);
  display: grid;
  gap: 14px;
  max-width: 640px;
}

.review-form h3 {
  font-family: "Fraunces", serif;
  font-size: 22px;
}

.review-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
}

.review-form input,
.review-form select,
.review-form textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(11, 11, 11, 0.15);
  font-family: inherit;
}

.contact {
  background: var(--ink);
  color: #fff;
}

.contact-card {
  background: #0f0b0d;
  padding: 36px;
  border-radius: var(--radius);
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 13px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #1a1417;
  color: #fff;
  font-family: inherit;
}

.contact-form button {
  width: 100%;
  background: var(--hot);
}

.form-confirmation {
  margin-top: 12px;
  padding: 10px 12px;
  background: rgba(227, 67, 134, 0.15);
  border-radius: 12px;
  font-size: 13px;
  color: #fff;
}

.review-form .form-confirmation {
  background: rgba(227, 67, 134, 0.1);
  color: #2b1e23;
}

.hours {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
}

.hours div {
  display: flex;
  justify-content: space-between;
}

.site-footer {
  padding: 32px 8vw 40px;
  display: grid;
  gap: 16px;
  background: #ffffff;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .site-nav {
    position: fixed;
    top: 76px;
    right: 8vw;
    background: #fff;
    flex-direction: column;
    padding: 18px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .site-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

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

@media (max-width: 600px) {
  .gallery-split {
    gap: 16px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-stats {
    flex-direction: column;
  }

  .pdf-frame {
    height: 260px;
  }

  .gallery-item img {
    height: 180px;
  }
}
