:root {
  --paper: #fffaf7;
  --paper-soft: #fbf0fb;
  --cream: #fff6ea;
  --ink: #24192d;
  --muted: #66536d;
  --lilac: #7049c9;
  --rose: #df438b;
  --peach: #ffc078;
  --mint: #65cfc3;
  --sky: #70bff0;
  --gold: #b47a25;
  --navy: #182f67;
  --green: #1fa855;
  --line: rgba(36, 25, 45, 0.12);
  --shadow: 0 18px 44px rgba(88, 54, 134, 0.14);
  --content: 1180px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(112, 73, 201, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 73, 201, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper), var(--paper-soft) 48%, var(--paper));
  background-size: 34px 34px, 34px 34px, auto;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Epilogue", system-ui, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 250, 247, 0.88);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  width: min(var(--content), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand img {
  width: 68px;
  height: 46px;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(112, 73, 201, 0.14);
}

.brand span {
  display: grid;
  gap: 3px;
}

.brand strong {
  color: var(--lilac);
  font-family: "Epilogue", system-ui, sans-serif;
  font-size: 1rem;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--rose);
}

.wa-button,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.wa-button {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 14px 28px rgba(31, 168, 85, 0.22);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--lilac), var(--rose));
  box-shadow: 0 16px 30px rgba(112, 73, 201, 0.24);
}

.button-light {
  color: var(--lilac);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(112, 73, 201, 0.2);
}

.wa-button:hover,
.wa-button:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 70svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(36, 25, 45, 0.76), rgba(36, 25, 45, 0.36) 52%, rgba(36, 25, 45, 0.12)),
    var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
  background-repeat: no-repeat;
}

.hero.logo-hero {
  background:
    linear-gradient(90deg, rgba(36, 25, 45, 0.78), rgba(36, 25, 45, 0.26) 52%, rgba(255, 250, 247, 0.5)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero-inner {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 64px;
  display: grid;
  gap: 18px;
  color: #ffffff;
}

.hero-inner > * {
  max-width: 690px;
}

.eyebrow {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: #4a2609;
  background: rgba(255, 192, 120, 0.92);
  font-size: 0.8rem;
  font-weight: 900;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5.7rem);
  max-width: 840px;
  text-wrap: balance;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  line-height: 1.7;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

.section {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section.compact {
  padding: 50px 0;
}

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

.section-kicker {
  margin-bottom: 10px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 650;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.tile,
.product-tile,
.step,
.note-panel {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 34px rgba(112, 73, 201, 0.09);
  overflow: hidden;
}

.tile img,
.product-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-media {
  aspect-ratio: 4 / 3;
  background: var(--paper-soft);
}

.tile-copy,
.product-copy,
.step {
  padding: 18px;
}

.tile-copy {
  display: grid;
  gap: 9px;
}

.tile-copy h3,
.product-copy h3,
.step h3 {
  font-size: 1.12rem;
}

.tile-copy p,
.product-copy p,
.step p,
.note-panel p,
.order-card p {
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.tag {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--ink);
  background: rgba(255, 192, 120, 0.42);
  font-size: 0.75rem;
  font-weight: 900;
}

.tag.mint {
  background: rgba(101, 207, 195, 0.34);
}

.tag.lilac {
  background: rgba(112, 73, 201, 0.18);
  color: var(--lilac);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-tile {
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-media {
  aspect-ratio: 4 / 5;
  background: var(--paper-soft);
}

.product-copy {
  display: grid;
  gap: 10px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}

.price {
  color: var(--lilac);
  font-weight: 950;
}

.wa-chip {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: #ffffff;
  background: var(--green);
  font-size: 0.75rem;
  font-weight: 950;
  white-space: nowrap;
}

.feature-band {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: center;
  border-radius: 26px;
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(255, 240, 221, 0.96), rgba(234, 220, 255, 0.96)),
    #ffffff;
  box-shadow: var(--shadow);
}

.feature-band.dark {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(24, 47, 103, 0.94), rgba(112, 73, 201, 0.88)),
    #182f67;
}

.feature-band h2 {
  font-size: clamp(1.9rem, 4vw, 2.55rem);
}

.feature-copy {
  display: grid;
  gap: 16px;
}

.feature-copy p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.03rem;
  font-weight: 650;
}

.feature-band.dark .feature-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.feature-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(36, 25, 45, 0.2);
}

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

.order-board {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  align-items: start;
}

.order-card {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  border-radius: 24px;
  padding: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), var(--lilac));
  box-shadow: var(--shadow);
}

.order-card p {
  color: rgba(255, 255, 255, 0.86);
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.step-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--rose);
  font-weight: 950;
}

.quote-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.quote-strip span {
  min-height: 82px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(112, 73, 201, 0.12);
  font-weight: 850;
  line-height: 1.35;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.gallery-main,
.gallery-side {
  display: grid;
  gap: 18px;
}

.gallery-main img,
.gallery-side img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(112, 73, 201, 0.1);
}

.gallery-main img {
  aspect-ratio: 1.18 / 1;
}

.gallery-side img {
  aspect-ratio: 4 / 3;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  border-radius: 24px;
  padding: 32px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 240, 221, 0.96), rgba(234, 220, 255, 0.96)),
    #ffffff;
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.contact-panel p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 650;
}

.footer {
  margin-top: 72px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.footer-inner {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.preview-shell {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: 60px 0;
}

.preview-hero {
  display: grid;
  gap: 18px;
  padding: 36px 0;
}

.preview-hero h1 {
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.preview-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  font-weight: 650;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.preview-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 34px rgba(112, 73, 201, 0.1);
}

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

.preview-card div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.preview-card h2 {
  font-size: 1.22rem;
}

.preview-card p {
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}

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

  .hero {
    min-height: 64svh;
  }

  .hero-inner {
    padding: 56px 0 50px;
  }

  .section-head,
  .feature-band,
  .order-board,
  .gallery-mosaic,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .order-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    width: min(100% - 24px, var(--content));
    min-height: 66px;
    gap: 12px;
  }

  .brand img {
    width: 56px;
    height: 40px;
  }

  .brand span {
    display: none;
  }

  .wa-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 62svh;
    background-position: var(--hero-mobile-position, center);
  }

  .hero-inner,
  .section,
  .feature-band,
  .contact-panel,
  .preview-shell {
    width: min(100% - 24px, var(--content));
  }

  .hero-inner {
    padding: 42px 0 40px;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .hero .wa-button,
  .contact-panel .wa-button {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .section-head {
    align-items: stretch;
  }

  .tile-grid,
  .tile-grid.two,
  .product-grid,
  .preview-grid,
  .quote-strip {
    grid-template-columns: 1fr;
  }

  .product-media {
    aspect-ratio: 4 / 3;
  }

  .feature-band {
    padding: 24px;
    border-radius: 20px;
  }

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

  .contact-panel {
    padding: 24px;
    border-radius: 20px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
