:root {
  --ink: #172126;
  --muted: #627174;
  --paper: #fffdf9;
  --soft: #eef8f7;
  --teal: #157f84;
  --coral: #f26d5b;
  --yellow: #f6c95d;
  --white: #ffffff;
  --shadow: 0 22px 64px rgba(23, 33, 38, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(23, 33, 38, 0.08);
}

.brand,
.nav,
.hero-actions,
.header-actions,
.language-switch,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-logo {
  width: 218px;
  height: 52px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
}

.nav {
  gap: clamp(14px, 3vw, 32px);
  color: #263236;
  font-size: 0.92rem;
  font-weight: 700;
}

.header-cta {
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  font-weight: 900;
}

.header-actions {
  gap: 12px;
}

.language-switch {
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(23, 33, 38, 0.14);
  border-radius: 999px;
  background: rgba(23, 33, 38, 0.06);
}

.language-switch button {
  min-width: 34px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--white);
  background: var(--teal);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #f4f2ee;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.98), rgba(255, 253, 249, 0.82) 35%, rgba(255, 253, 249, 0.18) 62%),
    linear-gradient(0deg, rgba(255, 253, 249, 0.7), rgba(255, 253, 249, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 140px clamp(20px, 6vw, 72px) 74px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 6.2vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.hero p {
  max-width: 610px;
  font-size: 1.12rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 21px;
  font-weight: 900;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.primary.dark {
  margin-top: 16px;
  background: var(--ink);
}

.button.secondary {
  color: var(--teal);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 33, 38, 0.12);
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(20px, 6vw, 72px);
}

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

.product-band {
  background: #172126;
  color: var(--white);
}

.product-band p {
  color: rgba(255, 255, 255, 0.73);
}

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

.product-grid article {
  min-height: 190px;
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.product-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 1.3rem;
  font-weight: 900;
}

.product-grid strong {
  display: inline-flex;
  margin-top: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.9rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: #dbecea;
}

.trust-strip div {
  min-height: 132px;
  padding: 28px;
  background: var(--soft);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 1.05rem;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.occasions {
  background: var(--paper);
}

.occasion-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.occasion-grid article,
.proof-grid article {
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 33, 38, 0.08);
}

.occasion-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 1.16rem;
  font-weight: 900;
}

.bundles {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  background: #fff3ed;
}

.bundle-list {
  display: grid;
  gap: 14px;
}

.bundle-list article {
  display: grid;
  gap: 6px;
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 33, 38, 0.08);
}

.bundle-list strong {
  color: var(--coral);
  font-size: 1.25rem;
}

.bundle-list span {
  color: var(--muted);
  line-height: 1.6;
}

.proof {
  background: #f8fbf5;
}

.proof-grid p {
  margin-bottom: 18px;
}

.proof-grid strong {
  color: var(--teal);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 310px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  cursor: zoom-in;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(23, 33, 38, 0.66);
  font-weight: 900;
}

.order-flow,
.partner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.9fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

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

.steps article {
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 33, 38, 0.08);
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
}

.partner {
  background: var(--soft);
}

.partner .button.primary {
  justify-self: end;
  background: var(--coral);
}

.footer {
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.footer a {
  color: var(--yellow);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 18px 13px 15px;
  color: var(--white);
  background: #128c7e;
  box-shadow: 0 18px 45px rgba(18, 140, 126, 0.34);
  font-weight: 900;
}

.floating-whatsapp svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-height: 88vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
}

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

  .hero {
    min-height: 86vh;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.72));
  }

  .product-grid,
  .trust-strip,
  .occasion-grid,
  .bundles,
  .proof-grid,
  .gallery,
  .order-flow,
  .partner {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .partner .button.primary {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 18px 18px;
  }

  .header-cta {
    display: none;
  }

  .language-switch button {
    min-width: 32px;
    height: 28px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-logo {
    width: 158px;
    height: 44px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3rem);
    line-height: 1.04;
  }

  .hero-content {
    width: 100vw;
    max-width: 100vw;
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-content h1,
  .hero-content p {
    max-width: min(calc(100vw - 60px), 330px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 270px;
  }

  .gallery {
    grid-auto-rows: 245px;
  }

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

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}
