:root {
  --bg: #fef7f5;
  --bg-soft: #f9ece8;
  --surface: #ffffff;
  --surface-soft: #fff9f8;
  --ink: #2f1f25;
  --muted: #755f69;
  --line: rgba(70, 37, 52, 0.13);
  --rose: #da7f9d;
  --rose-dark: #b45877;
  --champagne: #f1d5bc;
  --plum: #4c2334;
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 24px 60px rgba(93, 51, 69, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Urbanist", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 3% 4%, rgba(218, 127, 157, 0.20), transparent 35%),
    radial-gradient(circle at 95% 8%, rgba(241, 213, 188, 0.30), transparent 33%),
    linear-gradient(155deg, var(--bg) 0%, #fdf2ee 48%, var(--bg-soft) 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image: linear-gradient(0deg, rgba(180, 88, 119, 0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(180, 88, 119, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.header {
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
}

.nav {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 16px 10px 22px;
  box-shadow: var(--shadow);
}

.brand {
  font-family: "Italiana", serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: 0.6px;
  white-space: nowrap;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.menu a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  opacity: 0.86;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.menu a:hover {
  opacity: 1;
  color: var(--rose-dark);
}

.hero {
  padding: 16px 0 54px;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.hero-copy,
.hero-photo {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 244, 0.96));
  padding: clamp(24px, 4vw, 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeUp 700ms ease both;
}

.tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(180, 88, 119, 0.35);
  color: var(--rose-dark);
  background: rgba(255, 239, 246, 0.8);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.65px;
  font-weight: 800;
  padding: 7px 13px;
  margin-bottom: 16px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Italiana", serif;
  color: #321f26;
  line-height: 1.08;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.3rem);
  margin-bottom: 14px;
  max-width: 12ch;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 54ch;
  font-size: 1rem;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.89rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(157, 64, 98, 0.28);
}

.btn.light {
  border: 1px solid var(--line);
  color: var(--plum);
  background: rgba(255, 255, 255, 0.72);
}

.hero-photo {
  padding: 18px;
  background: linear-gradient(150deg, #fce9e2, #f8dbe3);
  display: grid;
  gap: 12px;
  animation: fadeUp 800ms 100ms ease both;
}

.photo-main {
  min-height: 315px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #e9d4cd;
}

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

.overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px;
  background: linear-gradient(180deg, transparent, rgba(37, 17, 25, 0.72));
  color: #fff7fb;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  font-weight: 600;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mini-stat {
  border-radius: var(--radius-md);
  padding: 11px;
  border: 1px solid rgba(88, 42, 58, 0.14);
  background: rgba(255, 255, 255, 0.8);
}

.mini-stat strong {
  display: block;
  color: #472633;
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.mini-stat span {
  font-size: 0.8rem;
  color: var(--muted);
}

.section {
  padding: 58px 0;
}

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

.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.section-head p {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
}

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

.service {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  padding: 18px;
  opacity: 0;
  transform: translateY(18px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 500ms ease;
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(87, 42, 61, 0.22);
}

.service-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f9d8c9, #e9aebf);
  color: #4e2737;
  font-weight: 700;
  margin-bottom: 11px;
  font-size: 0.95rem;
}

.service h3 {
  font-size: 1.75rem;
  margin-bottom: 6px;
}

.service p {
  margin: 0;
  min-height: 72px;
  color: #6a5560;
  font-size: 0.95rem;
}

.price {
  margin-top: 10px;
  color: var(--rose-dark);
  font-weight: 800;
  font-size: 0.9rem;
}

.gallery-wrap {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: repeat(2, 230px);
}

.shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px);
}

.shot.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 500ms ease;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.shot:hover img {
  transform: scale(1.06);
}

.shot .label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  border-radius: 999px;
  background: rgba(40, 16, 27, 0.72);
  color: #fff3f8;
  font-size: 0.78rem;
  letter-spacing: 0.3px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 233, 241, 0.22);
}

.shot.big {
  grid-row: 1 / span 2;
}

.campaign {
  margin-top: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(150deg, rgba(76, 35, 52, 0.93), rgba(180, 88, 119, 0.92));
  color: #ffeef4;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: clamp(20px, 4vw, 38px);
}

.campaign h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff7fa;
  margin-bottom: 8px;
}

.campaign p {
  margin: 0;
  color: #ffe0ea;
  max-width: 48ch;
}

.campaign .btn {
  min-width: 220px;
  background: #fff8fb;
  color: #6a2f45;
  font-weight: 800;
}

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

.depo {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  padding: 18px;
}

.depo p {
  margin: 0 0 12px;
  color: #68505b;
}

.depo strong {
  display: block;
  color: #3d2430;
  font-size: 0.92rem;
}

.depo span {
  font-size: 0.82rem;
  color: #8a6f7b;
}

footer {
  padding: 28px 0 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #7a636d;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .hero-wrap {
    grid-template-columns: 1fr;
  }

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

  .gallery-wrap {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .shot.big {
    grid-row: 1;
  }

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

@media (max-width: 760px) {
  .menu {
    display: none;
  }

  .header {
    padding: 0;
  }

  .nav {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

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

  .gallery-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }

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

  .campaign .btn {
    width: 100%;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }
}
