:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --text: #101010;
  --muted: #666666;
  --line: #e6e4df;
  --accent: #d9d3c7;
  --max-width: 1140px;
  --radius: 14px;
  --shadow: 0 10px 35px rgba(16, 16, 16, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

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

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 247, 245, 0.82);
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
  backdrop-filter: blur(8px);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  font-family: "Caveat", "Brush Script MT", cursive;
  font-size: 2rem;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav a.active,
.nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  font-size: 0.92rem;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--text);
  color: #fff;
}

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

.btn-compact {
  padding: 0.52rem 0.9rem;
  font-size: 0.82rem;
  width: auto;
  justify-self: start;
  align-self: start;
}

.btn-ghost {
  border-color: rgba(16, 16, 16, 0.15);
  background: transparent;
}

.home-gallery-wrap {
  padding-top: 1.5rem;
}

.home-gallery {
  columns: 3;
  column-gap: 1rem;
}

.home-shot {
  display: block;
  margin-bottom: 1rem;
  break-inside: avoid;
}

.home-shot img {
  width: 100%;
  height: auto;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.home-shot:hover img {
  transform: scale(1.01);
  filter: saturate(1.03) contrast(1.03);
}

h1,
h2,
h3 {
  font-family: "Caveat", "Brush Script MT", cursive;
  line-height: 1.1;
  margin: 0;
  font-weight: 600;
}

section {
  padding: 4rem 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}

.muted {
  color: var(--muted);
}

.cards {
  columns: 2;
  column-gap: 1.8rem;
}

.card {
  display: block;
  break-inside: avoid;
  margin: 0 0 1.8rem;
  border: 0;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
}

.card-image {
  overflow: hidden;
  margin-bottom: 0.8rem;
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
}

.card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.35s ease;
  border: 0;
  outline: 0;
  box-shadow: none;
}

.card:hover .card-image img {
  transform: scale(1.02);
}

.card-content {
  padding: 0;
}

.card-content h3 {
  text-transform: capitalize;
  letter-spacing: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.cta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.price-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1rem;
}

.faq {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  padding: 1rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.2rem;
  align-items: start;
}

.profile-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.2rem;
  align-items: start;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-photo-small {
  width: 50%;
  border: 0;
  margin-inline: auto;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-head {
  margin-top: 1.2rem;
}

.contact-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.4rem;
  min-height: 100%;
  display: grid;
  gap: 0.8rem;
}

.contact-panel p {
  margin: 0;
}

.contact-list {
  display: grid;
  gap: 0.35rem;
}

.gallery {
  column-count: 3;
  column-gap: 1rem;
}

.gallery figure {
  margin: 0 0 1rem;
  break-inside: avoid;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.gallery img {
  width: 100%;
  height: auto;
}

.site-footer {
  border-top: 1px solid rgba(16, 16, 16, 0.08);
  padding: 1.5rem 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.wa-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
}

.wa-float a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #111111;
  display: block;
  position: relative;
  box-shadow: var(--shadow);
  font-size: 0;
  color: transparent;
  line-height: 0;
}

.wa-float a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  background: #ffffff;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M13.601 2.326A7.854 7.854 0 0 0 8.017 0C3.66 0 .11 3.548.11 7.905c0 1.395.365 2.758 1.059 3.958L0 16l4.25-1.113a7.867 7.867 0 0 0 3.767.961h.003c4.356 0 7.906-3.548 7.906-7.905a7.85 7.85 0 0 0-2.325-5.617zM8.02 14.52h-.003a6.56 6.56 0 0 1-3.342-.92l-.24-.144-2.522.661.673-2.457-.156-.252a6.56 6.56 0 0 1-1.008-3.503c0-3.619 2.944-6.562 6.562-6.562a6.54 6.54 0 0 1 4.637 1.922A6.53 6.53 0 0 1 14.542 7.9c0 3.618-2.944 6.562-6.562 6.562zm3.598-4.901c-.197-.099-1.165-.574-1.346-.64c-.18-.066-.312-.099-.444.099c-.132.197-.51.64-.625.771c-.115.132-.23.148-.428.05c-.197-.1-.833-.307-1.586-.98c-.586-.522-.982-1.166-1.098-1.363c-.115-.197-.012-.304.087-.402c.09-.09.197-.23.296-.345c.099-.116.132-.198.197-.33c.066-.132.033-.247-.016-.345c-.05-.099-.445-1.074-.61-1.47c-.161-.387-.325-.335-.444-.34l-.378-.007c-.132 0-.346.05-.526.247c-.18.198-.69.675-.69 1.644c0 .968.707 1.903.806 2.035c.099.132 1.393 2.127 3.375 2.98c.471.203.839.324 1.126.415c.473.15.903.129 1.243.078c.379-.056 1.165-.476 1.329-.935c.164-.46.164-.853.115-.935c-.05-.083-.181-.132-.378-.23z'/></svg>")
    center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M13.601 2.326A7.854 7.854 0 0 0 8.017 0C3.66 0 .11 3.548.11 7.905c0 1.395.365 2.758 1.059 3.958L0 16l4.25-1.113a7.867 7.867 0 0 0 3.767.961h.003c4.356 0 7.906-3.548 7.906-7.905a7.85 7.85 0 0 0-2.325-5.617zM8.02 14.52h-.003a6.56 6.56 0 0 1-3.342-.92l-.24-.144-2.522.661.673-2.457-.156-.252a6.56 6.56 0 0 1-1.008-3.503c0-3.619 2.944-6.562 6.562-6.562a6.54 6.54 0 0 1 4.637 1.922A6.53 6.53 0 0 1 14.542 7.9c0 3.618-2.944 6.562-6.562 6.562zm3.598-4.901c-.197-.099-1.165-.574-1.346-.64c-.18-.066-.312-.099-.444.099c-.132.197-.51.64-.625.771c-.115.132-.23.148-.428.05c-.197-.1-.833-.307-1.586-.98c-.586-.522-.982-1.166-1.098-1.363c-.115-.197-.012-.304.087-.402c.09-.09.197-.23.296-.345c.099-.116.132-.198.197-.33c.066-.132.033-.247-.016-.345c-.05-.099-.445-1.074-.61-1.47c-.161-.387-.325-.335-.444-.34l-.378-.007c-.132 0-.346.05-.526.247c-.18.198-.69.675-.69 1.644c0 .968.707 1.903.806 2.035c.099.132 1.393 2.127 3.375 2.98c.471.203.839.324 1.126.415c.473.15.903.129 1.243.078c.379-.056 1.165-.476 1.329-.935c.164-.46.164-.853.115-.935c-.05-.083-.181-.132-.378-.23z'/></svg>")
    center / contain no-repeat;
}

@media (max-width: 960px) {
  .about {
    grid-template-columns: 1fr;
  }

  .profile-layout {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .about-photo-small {
    width: min(320px, 65%);
  }

  .pricing,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    column-count: 2;
  }

  .home-gallery {
    columns: 2;
  }
}

@media (max-width: 640px) {
  .nav {
    display: none;
  }

  .pricing,
  .steps {
    grid-template-columns: 1fr;
  }

  .cards {
    columns: 1;
  }

  .gallery {
    column-count: 1;
  }

  .home-gallery {
    columns: 1;
  }

  .about-photo-small {
    width: 70%;
  }
}
