:root {
  --berry: #c93f6f;
  --berry-dark: #8e274c;
  --berry-deep: #5f1e38;
  --cream: #fff7f5;
  --blush: #fbe1e8;
  --petal: #fff0f5;
  --ink: #3f3037;
  --muted: #7d6a72;
  --white: #fff;
  --shadow: 0 28px 70px rgba(142, 39, 76, 0.16);
  --shadow-strong: 0 34px 90px rgba(142, 39, 76, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent 18rem),
    radial-gradient(circle at 10% 0%, rgba(255, 207, 221, 0.45), transparent 24rem),
    var(--cream);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  margin: 0;
}

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

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

.demo-banner {
  align-items: center;
  background: var(--berry);
  color: var(--white);
  display: flex;
  font-size: 0.72rem;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding: 0.45rem 1.5rem;
  text-transform: uppercase;
}

.demo-banner button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.banner-hidden .demo-banner {
  display: none;
}

.site-header {
  align-items: center;
  background: rgba(255, 247, 245, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 63, 111, 0.12);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header::after {
  background: linear-gradient(90deg, transparent, rgba(201, 63, 111, 0.24), transparent);
  bottom: -1px;
  content: '';
  height: 1px;
  left: 4rem;
  position: absolute;
  right: 4rem;
}

.brand {
  color: var(--berry);
  display: grid;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 800;
  line-height: 1;
  max-width: 34vw;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-top: 0.28rem;
  text-transform: uppercase;
}

.main-nav,
.header-actions,
.language-switcher {
  align-items: center;
  display: flex;
}

.main-nav {
  gap: clamp(1rem, 2.4vw, 2.4rem);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--berry);
}

.header-actions {
  gap: 0.8rem;
}

.language-switcher {
  background: #fff;
  border: 1px solid rgba(201, 63, 111, 0.14);
  border-radius: 999px;
  gap: 0.2rem;
  padding: 0.22rem;
}

.lang-btn {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.42rem 0.55rem;
}

.lang-btn.is-active {
  background: var(--berry);
  color: #fff;
}

.header-cta,
.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.02em;
  min-height: 44px;
  padding: 0.8rem 1.35rem;
}

.header-cta,
.btn.primary {
  background: linear-gradient(135deg, var(--berry), var(--berry-dark));
  box-shadow: 0 14px 32px rgba(201, 63, 111, 0.24);
  color: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover,
.btn.primary:hover {
  box-shadow: 0 18px 42px rgba(142, 39, 76, 0.28);
  transform: translateY(-2px);
}

.btn.secondary {
  background: #fff;
  border: 1px solid rgba(63, 48, 55, 0.2);
  color: var(--ink);
}

.hero {
  align-items: center;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.92), transparent 22rem),
    radial-gradient(circle at 82% 24%, rgba(201, 63, 111, 0.18), transparent 24rem),
    linear-gradient(105deg, #fffdfb 0%, #ffe7ee 52%, #f4b7ca 100%);
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 720px;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 6vw, 7rem);
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(201, 63, 111, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(201, 63, 111, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  content: '';
  inset: 0;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 64%);
  opacity: 0.22;
  pointer-events: none;
  position: absolute;
}

.hero-copy {
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.hero-copy::before {
  background: var(--berry);
  border-radius: 999px;
  content: '';
  height: 9px;
  left: 0;
  position: absolute;
  top: -2rem;
  width: 82px;
}

.eyebrow,
.script-label {
  color: var(--berry);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 0.78rem;
}

.script-label {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.08em;
  margin: 0 0 0.45rem;
  text-transform: none;
}

h1,
h2,
h3 {
  font-family: 'Fraunces', serif;
}

h1 {
  font-size: clamp(3.6rem, 7.4vw, 7.8rem);
  line-height: 0.94;
  margin: 0.8rem 0 1.4rem;
  max-width: 720px;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.02;
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.1;
  margin: 0;
}

.hero-text,
.section-heading p,
.split-copy p,
.contact-section p,
.offer-card p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-visual {
  align-self: stretch;
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.hero-visual::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 225, 235, 0.58));
  border-radius: 48% 0 0 48% / 52% 0 0 52%;
  content: '';
  inset: -1.2rem 1.6rem 1.2rem -1.6rem;
  position: absolute;
  z-index: 0;
}

.hero-visual img {
  border-radius: 42% 0 0 42% / 50% 0 0 50%;
  box-shadow: var(--shadow-strong);
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  width: 100%;
  z-index: 1;
}

.products-section,
.features-section,
.gallery-section,
.contact-section,
.offer-section {
  padding: clamp(5rem, 7vw, 8rem) clamp(1.5rem, 6vw, 7rem);
}

.products-section,
.gallery-section {
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 207, 221, 0.5), transparent 18rem),
    linear-gradient(180deg, #fffaf9, #fff5f7),
    #fffaf9;
}

.section-heading {
  margin: 0 auto 3rem;
  max-width: 780px;
  text-align: center;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.category-pills span {
  background: #fff;
  border: 1px solid rgba(201, 63, 111, 0.12);
  border-radius: 999px;
  color: var(--berry-dark);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0.7rem 1.1rem;
  box-shadow: 0 10px 22px rgba(142, 39, 76, 0.06);
}

.product-grid,
.gallery-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.7rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  background: #fff;
  border-radius: 2rem;
  border: 1px solid rgba(201, 63, 111, 0.08);
  box-shadow: 0 18px 45px rgba(142, 39, 76, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  box-shadow: 0 28px 70px rgba(142, 39, 76, 0.18);
  transform: translateY(-8px);
}

.product-card img {
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  transition: transform 260ms ease;
  width: 100%;
}

.product-card:hover img {
  transform: scale(1.045);
}

.product-card h3 {
  color: var(--berry-deep);
  padding: 1.2rem 1.2rem 0.3rem;
}

.product-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
  padding: 0 1.2rem 1.4rem;
}

.split-section {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-section figure {
  height: 100%;
  margin: 0;
  min-height: 520px;
  overflow: hidden;
}

.split-section img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.split-copy {
  padding: clamp(3rem, 6vw, 7rem);
}

.about-section {
  background:
    linear-gradient(90deg, rgba(63, 48, 55, 0.08), transparent 40%),
    #ead8d2;
}

.custom-section {
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.92), transparent 24rem),
    linear-gradient(90deg, #fff, #fff2f6),
    #fff;
}

.features-section {
  background: #fff;
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: center;
}

.features-section article {
  background: linear-gradient(180deg, #fff, #fff7f9);
  border: 1px solid rgba(201, 63, 111, 0.08);
  border-radius: 2rem;
  box-shadow: 0 18px 45px rgba(142, 39, 76, 0.08);
  margin: 0 auto;
  max-width: 360px;
  padding: 2.2rem 1.8rem;
}

.features-section span {
  align-items: center;
  background: var(--blush);
  border-radius: 999px;
  color: var(--berry);
  display: inline-flex;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  margin-bottom: 1.2rem;
  width: 58px;
}

.features-section p {
  color: var(--muted);
  line-height: 1.7;
}

.offer-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.24), transparent 18rem),
    radial-gradient(circle at 88% 22%, rgba(255, 199, 217, 0.2), transparent 20rem),
    linear-gradient(135deg, rgba(201, 63, 111, 0.95), rgba(95, 30, 56, 0.97)),
    url('../img/image04.webp') center/cover;
  overflow: hidden;
  position: relative;
}

.offer-section::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 46px 46px;
  content: '';
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  position: absolute;
}

.offer-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 2.6rem;
  box-shadow: 0 42px 110px rgba(63, 21, 40, 0.42);
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(2rem, 5vw, 4.5rem);
  position: relative;
  text-align: center;
  z-index: 1;
}

.offer-card::before {
  background: linear-gradient(90deg, transparent, rgba(201, 63, 111, 0.42), transparent);
  content: '';
  height: 1px;
  left: clamp(2rem, 6vw, 6rem);
  position: absolute;
  right: clamp(2rem, 6vw, 6rem);
  top: 0;
}

.offer-card > h2 {
  color: var(--berry-deep);
  margin-inline: auto;
  max-width: 760px;
}

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

.price-grid div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 239, 244, 0.9)),
    var(--cream);
  border: 1px solid rgba(201, 63, 111, 0.08);
  border-radius: 1.5rem;
  padding: 1.4rem;
}

.price-grid span {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.price-grid strong {
  color: var(--berry-dark);
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.pack-grid {
  display: grid;
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.35rem);
  grid-template-columns: minmax(0, 28rem);
  justify-content: center;
  margin: 2.4rem 0 2rem;
}

.pack-card {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 246, 0.94)),
    var(--cream);
  border: 1px solid rgba(201, 63, 111, 0.13);
  border-radius: 1.8rem;
  box-shadow: 0 18px 42px rgba(142, 39, 76, 0.1);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  min-height: 370px;
  overflow: hidden;
  padding: 1.65rem 1.35rem;
  position: relative;
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.pack-card::before {
  background: radial-gradient(circle, rgba(201, 63, 111, 0.14), transparent 68%);
  content: '';
  height: 150px;
  left: 50%;
  position: absolute;
  top: -92px;
  transform: translateX(-50%);
  width: 170px;
  z-index: -1;
}

.pack-card:hover {
  border-color: rgba(201, 63, 111, 0.26);
  box-shadow: 0 28px 70px rgba(142, 39, 76, 0.17);
  transform: translateY(-6px);
}

.pack-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 235, 243, 0.96)),
    var(--petal);
  border-color: rgba(201, 63, 111, 0.28);
}

.pack-card span {
  background: rgba(201, 63, 111, 0.1);
  border: 1px solid rgba(201, 63, 111, 0.13);
  border-radius: 999px;
  color: var(--berry-dark);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  min-width: 92px;
  padding: 0.48rem 0.8rem;
  text-transform: uppercase;
}

.pack-card h3 {
  color: var(--berry-deep);
  font-family: 'Fraunces', serif;
  font-size: clamp(1.25rem, 1.75vw, 1.65rem);
  line-height: 1.12;
  margin: 0 0 0.95rem;
  min-height: 3.7em;
}

.pack-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0 auto 1.2rem;
  max-width: 260px;
}

.pack-card strong {
  color: var(--berry-dark);
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.38rem, 2vw, 1.95rem);
  line-height: 1.08;
  margin-top: auto;
  max-width: 260px;
}

.pack-card small {
  background: #fff;
  border: 1px solid rgba(201, 63, 111, 0.13);
  border-radius: 999px;
  color: var(--berry-dark);
  display: block;
  font-weight: 900;
  line-height: 1.25;
  margin-top: 0.75rem;
  padding: 0.58rem 0.85rem;
}

.offer-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  list-style: none;
  margin: 1.7rem 0 2.1rem;
  padding: 0;
}

.offer-card li {
  background: rgba(201, 63, 111, 0.08);
  border: 1px solid rgba(201, 63, 111, 0.12);
  border-radius: 999px;
  color: var(--berry-deep);
  font-weight: 800;
  padding: 0.7rem 1rem;
}

.offer-card li::before {
  color: var(--berry);
  content: '•';
  margin-right: 0.55rem;
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
  border: 8px solid #fff;
  border-radius: 1.8rem;
  box-shadow: 0 18px 45px rgba(142, 39, 76, 0.12);
  object-fit: cover;
  transition: transform 220ms ease, box-shadow 220ms ease;
  width: 100%;
}

.gallery-grid img:hover {
  box-shadow: 0 28px 70px rgba(142, 39, 76, 0.2);
  transform: translateY(-6px) rotate(-1deg);
}

.contact-section {
  align-items: center;
  background:
    radial-gradient(circle at 80% 12%, rgba(201, 63, 111, 0.12), transparent 18rem),
    #fff2f6;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(201, 63, 111, 0.08);
  border-radius: 2rem;
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.contact-card p {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 1rem;
}

.contact-card strong {
  color: var(--berry);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 63, 111, 0.24), transparent 18rem),
    #242026;
  color: #fff;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr auto;
  padding: 3rem clamp(1.5rem, 6vw, 7rem);
}

.site-footer strong {
  color: #ff8db4;
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-column: 1 / -1;
  margin: 1rem 0 0;
  padding-top: 1.5rem;
  text-align: center;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    display: grid;
  }

  .brand {
    max-width: 80vw;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-visual img {
    border-radius: 2rem;
  }

  .hero-visual::before {
    border-radius: 2.4rem;
    inset: -0.8rem;
  }

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

  .features-section {
    grid-template-columns: 1fr;
  }

  .split-section figure {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .demo-banner {
    font-size: 0.58rem;
    padding-inline: 0.8rem;
  }

  .site-header {
    padding: 0.85rem 1rem;
  }

  .main-nav {
    display: none;
  }

  .brand {
    max-width: 100%;
  }

  .header-actions,
  .hero-buttons,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .header-cta,
  .btn {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.35rem, 11.4vw, 3.35rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .hero-copy::before {
    top: -1.2rem;
    width: 56px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .products-section,
  .features-section,
  .gallery-section,
  .contact-section,
  .offer-section {
    padding-block: 4rem;
  }

  .split-copy {
    padding: 3rem 1rem;
  }

  .offer-card {
    border-radius: 1.8rem;
    padding: 2rem 1rem;
  }

  .pack-card {
    min-height: auto;
    padding: 1.5rem 1.1rem;
  }

  .pack-card h3 {
    min-height: auto;
  }

  .offer-card ul {
    display: grid;
  }

  .price-grid strong {
    font-size: 2.5rem;
  }

  .hero,
  .products-section,
  .features-section,
  .gallery-section,
  .contact-section,
  .offer-section {
    padding-inline: 1rem;
  }

  .product-grid,
  .gallery-grid,
  .price-grid,
  .pack-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }
}
