*,
*::before,
*::after {
  box-sizing: border-box;
}
все html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #1a1010f0;
  color: #f1e7e5;
  overflow-x: hidden;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 210px;
  height: 100vh;
  padding: 40px 20px;
  background: rgb(10 5 4 / 52%);
  backdrop-filter: blur(18px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
  z-index: 20;
}

.lang-switcher {
  display: flex;
  gap: 10px;
}

.lang-btn {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #f3d4d0;
  cursor: pointer;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lang-btn.active {
  background: #9c7553;
  color: #1a0f0d;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.sidebar-nav a {
  text-decoration: none;
  font-size: 0.85rem;
  color: #e8c8c4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: 0.2s;
  font-family: "Montserrat Alternates", sans-serif;
}

.sidebar-nav a:hover {
  opacity: 1;
  transform: translateX(-3px);
  color: #faddd9;
}

.page {
  padding-right: 208px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding: 59px 52px;
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2.5rem, 4vw, 3.3rem);
  line-height: 1.05;
  color: #9c7553;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.1);
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #12080742, rgb(10 5 5 / 0%)),
    linear-gradient(to right, #0a0504, #0a05042e);
  z-index: 2;
}

.hero-background img {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
  position: relative;
  padding-left: 10px;
}

.hero-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  margin-bottom: 16px;
  color: #d9bab4;
}

.hero-subtitle {
  max-width: 405px;
  margin-bottom: 24px;
  color: #f8e7e3;
  font-family: "Montserrat Alternates", sans-serif;
}

.btn-primary {
  display: inline-block;
  padding: 5px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9b8b3, #b38a86);
  color: #1a0f0d;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 rgba(255, 230, 225, 0);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b8928d, #8d6b68);
  color: white;
  box-shadow: 0 10px 25px rgba(255, 220, 215, 0.2);
  transform: translateY(-2px);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.35),
    transparent 70%
  );
  opacity: 0;
  transition: 0.4s ease;
}

.btn-primary:hover::before {
  opacity: 0.35;
}

.btn-primary:hover {
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 rgba(255, 230, 225, 0.3);
  }
  70% {
    box-shadow: 0 0 18px rgba(255, 230, 225, 0.35);
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 230, 225, 0.3);
  }
}

.section-title {
  font-family: "Shantell Sans", cursive;
  font-size: 2.3rem;
  margin-bottom: 35px;
  text-align: center;
  color: #9c7553;
}

.section {
  padding: 95px 40px;
  position: relative;
  justify-items: center;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 4px;
  background: rgb(255 255 255 / 20%);
}

.gallery-section::before {
  display: none !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

.gallery-item {
  width: 85%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
}

.gallery-item {
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  filter: brightness(1.15) contrast(1.1);
}

.story-section p {
  max-width: 620px;
  margin-bottom: 16px;
  text-align: center;
  font-family: "Montserrat Alternates", sans-serif;
}

.cta-section {
  text-align: center;
}

.cta-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 53px 92px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.site-footer {
  background: #0a050459;
  padding: 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  text-align: center;
}

.footer-inner span {
  font-size: 0.85rem;
  color: #cdb7b3;
  opacity: 0.9;
}

.fade-in {
  opacity: 1;
  transform: none;
  transition: none;
}

html.js .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 1s ease;
}

html.js .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.ready {
  font-family: "Shantell Sans", cursive;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 45px;
  max-width: 1050px;
  margin: 0 auto;
  margin-top: 45px;
  position: relative;
  z-index: 3;
}

.service-card {
  padding: 32px 28px;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 220, 210, 0.12),
    transparent 60%
  );
  opacity: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 230, 220, 0.15);
}

.service-card h2 {
  font-family: "Shantell Sans", cursive;
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: #f5dedd;
  letter-spacing: 0.03em;
  color: #9c7553;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.9;
  color: #eadede;
  font-family: "Montserrat Alternates", sans-serif;
}

#services.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  width: 76%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  opacity: 0.8;
}

.page-title {
  padding: 110px 40px 40px;
  text-align: center;
}

.page-title h1 {
  font-family: "Shantell Sans", cursive;
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin: -51px 0 14px;
  letter-spacing: 0.06em;
  color: #9c7553;
}

.page-title p {
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
  font-family: "Montserrat Alternates", sans-serif;
}

.service-img {
  width: 100%;
  height: 299px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
  filter: brightness(0.95) contrast(1.05);
}

.service-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.service-price {
  font-size: 19px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #afadac;
  opacity: 0.95;
  white-space: nowrap;
}

.service-details {
  margin: 0;
  line-height: 1.65;
  opacity: 0.92;
}

.includes-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.include-pill {
  width: 100%;
  padding: 21px 31px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: center;
}

.include-pill strong {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: "Montserrat Alternates", sans-serif;
  color: #9c7553;
}

.include-pill span {
  opacity: 0.9;
  text-align: right;
  font-family: "Montserrat Alternates", sans-serif;
}

.name {
  font-family: "Shantell Sans", cursive;
}
.want {
  font-family: "Montserrat Alternates", sans-serif;
}

.about-img {
  width: 87%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 16px;
  filter: brightness(0.95) contrast(1.05);
}

.contact {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.portfolio-filters {
  max-width: 980px;
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #eadede;
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Montserrat Alternates", sans-serif;
  transition: 0.25s ease;
}

.filter-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
}

.filter-btn.active {
  background: rgba(156, 117, 83, 0.22);
  border-color: rgba(156, 117, 83, 0.45);
  color: #f3d4d0;
}

.portfolio-grid {
  max-width: 1050px;
  margin: 45px auto 0;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
}

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

.portfolio-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(10, 5, 4, 0.75), rgba(10, 5, 4, 0));
  color: #eadede;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.desktop-only {
  display: block;
}
.topbar,
.drawer,
.overlay {
  display: none;
}

@media (max-width: 880px) {
  .desktop-only {
    display: none;
  }

  .topbar {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    padding: 0 14px;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 5, 4, 0.62);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
  }

  .menu-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: #f1e7e5;
    font-size: 22px;
    cursor: pointer;
  }

  .topbar-lang .lang-btn {
    padding: 6px 10px;
    font-size: 0.68rem;
  }

  .page {
    padding-right: 0;
  }

  .hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    padding: 59px 12px;
  }

  @media (max-width: 600px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .gallery-item {
      width: 100%;
      aspect-ratio: 4 / 5;
      border-radius: 18px;
    }
  }

  .overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 5, 4, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
    z-index: 1000;
  }
  .overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  .drawer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 86vw);
    height: 100vh;
    background: rgba(10, 5, 4, 0.8);
    backdrop-filter: blur(18px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-105%);
    transition: 0.28s ease;
    z-index: 1100;
    padding: 18px;
  }
  .drawer.open {
    transform: translateX(0);
  }

  .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
  }

  .drawer-title {
    font-family: "Shantell Sans", cursive;
    font-size: 1.5rem;
    color: #9c7553;
  }

  .drawer-close {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: #f1e7e5;
    font-size: 26px;
    cursor: pointer;
    line-height: 40px;
  }

  .drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .drawer-nav a {
    display: block;
    padding: 12px 12px;
    border-radius: 14px;
    text-decoration: none;
    color: #eadede;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    font-family: "Montserrat Alternates", sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.82rem;
    opacity: 0.95;
  }

  .drawer-nav a:active {
    transform: scale(0.99);
  }
}

@media (hover: none) {
  .sidebar-nav a:hover {
    transform: none;
  }
  .drawer-nav a:hover {
    transform: none;
  }
}

@media (min-width: 881px) {
  .sidebar.desktop-only {
    gap: 70px !important;
  }

  .sidebar.desktop-only .lang-switcher {
    margin-bottom: 0 !important;
  }

  .sidebar.desktop-only .sidebar-nav {
    margin-top: 0 !important;
    gap: 18px;
  }
}
@media (min-width: 881px) {
  .sidebar.desktop-only .sidebar-nav {
    padding-top: 40px !important;
    gap: 12px;
  }
}

@media (max-width: 880px) {
  .page-title {
    padding: 42px 18px 22px;
  }

  .page-title h1 {
    margin: 50px 0 12px;
    font-size: 2.2rem;
  }

  .page-title p {
    padding: 0 6px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .section {
    padding: 55px 18px;
  }

  .services-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .about-img {
    width: 100% !important;
    border-radius: 18px;
    margin-bottom: 14px;
  }

  .includes-wrap {
    gap: 12px;
  }

  .include-pill {
    padding: 16px 16px;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .include-pill span {
    text-align: left;
  }

  .contact {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .service-card {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .service-card h2 {
    font-size: 1.45rem;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

@media (max-width: 420px) {
  .page-title h1 {
    font-size: 2rem;
  }
  .service-card h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 880px) {
  .contact {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }

  .contact .include-pill {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px;
    border-radius: 16px;
  }

  .contact .include-pill span {
    text-align: left;
    margin-top: 6px;
    font-size: 0.95rem;
  }
}

@media (max-width: 420px) {
  .contact {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 880px) {
  .page {
    padding-right: 0 !important;
  }

  .page-title {
    padding: 70px 18px 22px;
    text-align: center;
  }

  .page-title h1 {
    margin: 0 0 12px;
    font-size: 2.2rem;
  }

  .page-title p {
    font-size: 0.98rem;
    line-height: 1.7;
    padding: 0 6px;
  }

  .section {
    padding: 55px 18px;
  }

  .portfolio-filters {
    margin-top: 16px;
    gap: 10px;
    padding: 0 8px;
  }

  .filter-btn {
    padding: 9px 14px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .portfolio-grid {
    margin-top: 22px;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }

  .portfolio-item {
    border-radius: 16px;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 420px) {
  .portfolio-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .filter-btn {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}
