:root {
  --pink: #f7a8bf;
  --pink-strong: #d95785;
  --purple: #b99be8;
  --blue: #b9ddf0;
  --cream: #fff8ed;
  --paper: #fffdf9;
  --ink: #312633;
  --muted: #726676;
  --line: #f0dce4;
  --shadow: 0 18px 50px rgba(89, 57, 72, 0.13);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff8fb 0%, #fffdf9 40%, #f7fbff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

main {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(255, 253, 249, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  display: grid;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 18px;
  color: #4b3d4d;
  font-size: 0.95rem;
}

.nav-links.open {
  position: absolute;
  top: 69px;
  left: 16px;
  right: 16px;
  display: grid;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 10px 14px;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--pink-strong), #9a67d1);
  box-shadow: 0 12px 24px rgba(217, 87, 133, 0.24);
}

.btn-soft {
  background: white;
  border-color: var(--line);
  color: var(--pink-strong);
}

.hero,
.page-hero,
.product-detail,
.split-section,
.contact-layout {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 90px);
  padding: 42px 0 28px;
}

.hero h1,
.page-hero h1 {
  margin: 12px 0;
  max-width: 800px;
  font-size: clamp(2.25rem, 8vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p,
.page-hero p,
.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-media img,
.rounded-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

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

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #6d4c69;
  font-size: 0.86rem;
  font-weight: 700;
}

.badges.large span {
  min-height: 42px;
  padding-inline: 18px;
}

.section,
.final-cta {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading h2,
.split-section h2,
.content-card h2,
.product-detail h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.08;
}

.section-heading p {
  color: var(--muted);
}

.eyebrow,
.category {
  margin: 0;
  color: var(--pink-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-grid,
.product-grid,
.channel-grid,
.quote-grid,
.testimonial-grid,
.gallery-grid,
.two-col {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.feature-grid article,
.panel,
.content-card,
.channel-card,
.product-card,
.article-card,
.quote-grid blockquote,
details {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(89, 57, 72, 0.07);
}

.feature-grid article,
.panel,
.content-card,
.article-card,
details {
  padding: 20px;
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.product-card {
  overflow: hidden;
}

.product-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-body {
  padding: 16px;
}

.product-body h3 {
  margin: 5px 0 8px;
  font-size: 1.18rem;
}

.split-section,
.contact-layout,
.product-detail {
  display: grid;
  gap: 26px;
  align-items: center;
  padding: 54px 0;
}

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

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.gallery-grid img,
.mini-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.channel-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.channel-grid.compact {
  grid-template-columns: repeat(2, 1fr);
}

.channel-card {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.channel-card span,
.product-body p,
.content-card p,
.article-card p {
  color: var(--muted);
}

.quote-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.quote-grid blockquote {
  margin: 0;
  padding: 18px;
  color: #61465d;
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  align-items: start;
}

.testimonial-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #fff7fb);
  box-shadow: 0 16px 36px rgba(89, 57, 72, 0.1);
}

.testimonial-shot {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(247, 168, 191, 0.18), rgba(185, 221, 240, 0.22)),
    #fff;
}

.testimonial-shot img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(49, 38, 51, 0.1);
}

.testimonial-card figcaption {
  padding: 12px 14px 14px;
  color: #684d68;
  font-weight: 800;
}

.area-band {
  padding: 32px;
  border-radius: 26px;
  background: linear-gradient(135deg, #fff1f6, #eef8ff);
}

.faq-list {
  display: grid;
  gap: 10px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  color: var(--muted);
}

.final-cta {
  margin-bottom: 44px;
  padding: 34px;
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffe5ef, #eaf6ff);
}

.page-hero {
  padding: 56px 0 20px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.filters button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 700;
}

.filters .active {
  color: white;
  background: var(--pink-strong);
  border-color: var(--pink-strong);
}

.product-detail {
  align-items: start;
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.92rem;
}

.main-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.thumb-row img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}

.check-list,
.steps {
  padding-left: 22px;
}

.steps li {
  margin: 10px 0;
}

.article-card {
  width: min(900px, calc(100% - 32px));
  margin: 18px auto;
}

.order-form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: #5d4c60;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.center {
  text-align: center;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 38px clamp(16px, 4vw, 56px);
  background: #3b2b3d;
  color: white;
}

.site-footer p,
.site-footer a {
  display: block;
  color: #f5ddeb;
}

[hidden] {
  display: none !important;
}

@media (min-width: 760px) {
  .hero,
  .split-section,
  .contact-layout,
  .product-detail {
    grid-template-columns: 1.02fr 0.98fr;
  }

  .two-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1040px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }
}
