:root {
  --ink: #24131b;
  --ink-soft: #5d4650;
  --paper: #fff9fc;
  --paper-strong: #ffffff;
  --blush: #fdecf4;
  --rose: #f8d8e8;
  --fuchsia: #e5007d;
  --pink: #ff3f9f;
  --magenta: #c1005e;
  --burgundy: #73002f;
  --burgundy-dark: #4a001d;
  --silver: #e7d3d8;
  --line: rgba(115, 0, 47, 0.14);
  --shadow: 0 22px 60px rgba(115, 0, 47, 0.14);
  --max: 1160px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 63, 159, 0.2), transparent 34rem),
    linear-gradient(180deg, var(--paper), #fff 42%, var(--blush));
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: #fff;
  background: var(--fuchsia);
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 46px);
  background: rgba(255, 249, 252, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(255, 249, 252, 0.96);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(115, 0, 47, 0.08);
}

.brand,
.site-nav,
.header-action {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--burgundy);
  font-weight: 900;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  background: #fff;
  box-shadow:
    0 0 0 2px rgba(229, 0, 125, 0.18),
    0 8px 18px rgba(115, 0, 47, 0.14);
}

.site-nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 750;
}

.site-nav a,
.footer-links a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--fuchsia);
}

.header-action,
.button {
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(115, 0, 47, 0.18);
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.header-action {
  color: #fff;
  background: var(--burgundy);
}

.header-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  width: min(calc(100% - 36px), var(--max));
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  margin: 0 auto;
  padding: 118px 0 54px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--magenta);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  color: transparent;
  background: linear-gradient(95deg, var(--burgundy-dark), var(--burgundy), var(--fuchsia), var(--burgundy-dark));
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
  animation: titleSheen 9s ease-in-out infinite;
}

h2 {
  max-width: 760px;
  color: var(--burgundy-dark);
  font-size: clamp(2rem, 4.8vw, 4rem);
  font-weight: 950;
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  color: var(--burgundy-dark);
  font-size: 1.18rem;
  line-height: 1.18;
}

.hero-copy > p:not(.eyebrow),
.intro-copy p,
.detail-list,
.product-card p,
.benefit-grid p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.72;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 20px;
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
}

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

.hero-product-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-product-strip article {
  min-width: 136px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 8px 8px;
  color: var(--burgundy-dark);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(229, 0, 125, 0.14);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(115, 0, 47, 0.1);
  animation: productPillFloat 5.8s ease-in-out infinite;
}

.hero-product-strip article:nth-child(2) {
  animation-delay: -1.8s;
}

.hero-product-strip article:nth-child(3) {
  animation-delay: -3.4s;
}

.hero-product-strip img {
  width: 44px;
  height: 44px;
  padding: 4px;
  background: #fff;
  border-radius: 999px;
  object-fit: contain;
}

.hero-product-strip span {
  font-size: 0.82rem;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  min-width: 164px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--burgundy), var(--fuchsia));
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(229, 0, 125, 0.28);
}

.button-primary:hover {
  background: linear-gradient(90deg, var(--magenta), var(--pink));
}

.button-secondary {
  color: var(--burgundy);
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover {
  border-color: rgba(229, 0, 125, 0.42);
  background: #fff;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 40px 0 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.quick-facts div {
  min-height: 120px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.quick-facts dt {
  color: var(--fuchsia);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 2% 5% 12%;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 63, 159, 0.34), transparent 36%),
    linear-gradient(145deg, var(--burgundy-dark), var(--burgundy) 46%, var(--fuchsia));
  border-radius: 42px;
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
  animation: heroPanelFloat 7s ease-in-out infinite;
}

.logo-card {
  position: absolute;
  z-index: 4;
  top: 42px;
  left: 0;
  width: min(46%, 260px);
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(253, 236, 244, 0.88)),
    #fff;
  border: 1px solid rgba(229, 0, 125, 0.18);
  border-radius: 28px;
  box-shadow:
    0 20px 52px rgba(115, 0, 47, 0.14),
    0 0 0 8px rgba(255, 255, 255, 0.34);
}

.logo-card img {
  aspect-ratio: 1;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  background: #fff;
}

.mascot {
  position: relative;
  z-index: 3;
  width: min(78%, 420px);
  max-height: 560px;
  margin-left: auto;
  border-radius: 36px;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.floating-products {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.float-product {
  position: absolute;
  width: clamp(74px, 10vw, 112px);
  aspect-ratio: 1;
  padding: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(229, 0, 125, 0.16);
  border-radius: 24px;
  object-fit: contain;
  box-shadow: 0 16px 36px rgba(115, 0, 47, 0.14);
  animation: productFloat 6.8s ease-in-out infinite;
}

.float-product-one {
  right: -2%;
  top: 13%;
}

.float-product-two {
  left: 10%;
  bottom: 8%;
  animation-delay: -2s;
}

.float-product-three {
  right: 2%;
  bottom: 6%;
  animation-delay: -4s;
}

.section-inner {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

section:not(.hero) {
  padding: clamp(72px, 10vw, 126px) 0;
}

.section-band {
  background:
    radial-gradient(circle at 8% 0%, rgba(229, 0, 125, 0.13), transparent 24rem),
    linear-gradient(180deg, rgba(253, 236, 244, 0.84), rgba(255, 255, 255, 0.92));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.visit-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 24px;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 780px;
}

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

.product-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(115, 0, 47, 0.09);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  padding: 18px;
  object-fit: contain;
  background:
    linear-gradient(145deg, rgba(253, 236, 244, 0.82), rgba(255, 255, 255, 0.9)),
    #fff;
}

.product-card div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

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

.benefit-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 63, 159, 0.22), transparent 55%),
    var(--burgundy-dark);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.benefit-grid span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--burgundy-dark);
  background: var(--rose);
  border-radius: 16px;
  font-weight: 950;
}

.benefit-grid h3 {
  color: #fff;
}

.benefit-grid p {
  color: rgba(255, 249, 252, 0.84);
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.payment-logo {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  color: var(--burgundy-dark);
  background: #fff;
  border-radius: 9px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.payment-logo.visa {
  color: #173f96;
  font-size: 0.86rem;
  font-style: italic;
}

.payment-logo.mastercard {
  color: #231f20;
}

.payment-logo.mastercard i {
  position: relative;
  width: 24px;
  height: 16px;
  display: inline-block;
}

.payment-logo.mastercard i::before,
.payment-logo.mastercard i::after {
  content: "";
  position: absolute;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 999px;
}

.payment-logo.mastercard i::before {
  left: 0;
  background: #eb001b;
}

.payment-logo.mastercard i::after {
  right: 0;
  background: rgba(247, 158, 27, 0.86);
}

.payment-logo.card {
  color: #fff;
  background: linear-gradient(90deg, var(--magenta), var(--pink));
}

.visit-copy {
  position: sticky;
  top: 110px;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.detail-list strong {
  color: var(--burgundy);
}

.map-panel {
  overflow: hidden;
  min-height: 460px;
  background: var(--blush);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: block;
  border: 0;
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-row {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-row:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 0, 125, 0.36);
  box-shadow: 0 16px 38px rgba(115, 0, 47, 0.12);
}

.contact-row span {
  color: var(--fuchsia);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-row strong {
  color: var(--burgundy-dark);
  font-size: clamp(1.12rem, 2.3vw, 1.55rem);
  line-height: 1.18;
}

.contact-row.primary {
  color: #fff;
  background: linear-gradient(90deg, var(--burgundy), var(--fuchsia));
}

.contact-row.primary span,
.contact-row.primary strong {
  color: #fff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 4vw, 48px);
  color: rgba(255, 249, 252, 0.78);
  background: var(--burgundy-dark);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-page {
  background:
    radial-gradient(circle at top right, rgba(229, 0, 125, 0.16), transparent 30rem),
    linear-gradient(180deg, var(--paper), #fff 50%, var(--blush));
}

.legal-main {
  width: min(calc(100% - 36px), 960px);
  margin: 0 auto;
  padding: 132px 0 82px;
}

.legal-document {
  padding: clamp(26px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.legal-document h1 {
  max-width: 820px;
  color: var(--burgundy-dark);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  animation: none;
}

.legal-document h2 {
  margin-top: 42px;
  font-size: clamp(1.35rem, 2.8vw, 2.05rem);
  line-height: 1.12;
}

.legal-document p,
.legal-document li {
  color: var(--ink-soft);
  line-height: 1.75;
}

.legal-document p {
  margin-top: 16px;
}

.legal-document ul,
.legal-document ol {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.legal-document a {
  color: var(--magenta);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-updated {
  color: var(--burgundy);
  font-weight: 850;
}

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

  .hero {
    min-height: auto;
  }

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

  .product-grid,
  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .visit-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
    gap: 12px;
  }

  .site-nav {
    display: none;
  }

  .brand span {
    max-width: 134px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-action {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.9rem;
  }

  .hero {
    width: min(calc(100% - 28px), var(--max));
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.7rem);
  }

  .quick-facts,
  .product-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual::before {
    inset: 12% 0 4% 4%;
    border-radius: 30px;
  }

  .logo-card {
    width: 42%;
    min-width: 140px;
  }

  .float-product {
    width: 72px;
    border-radius: 18px;
  }

  .float-product-one {
    top: 12%;
    right: 0;
  }

  .float-product-two {
    left: 6%;
    bottom: 4%;
  }

  .float-product-three {
    display: none;
  }

  .mascot {
    width: min(82%, 330px);
    max-height: 390px;
    border-radius: 28px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 360px;
  }

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

  .legal-main {
    width: min(calc(100% - 28px), 960px);
    padding-top: 104px;
  }
}

@keyframes titleSheen {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes heroPanelFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}

@keyframes productPillFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
