﻿:root {
  --cream-50: #fff8ee;
  --cream-100: #f7e6d1;
  --cream-200: #ecd1b1;
  --latte: #d3ad83;
  --toffee: #b98354;
  --caramel: #9f6538;
  --choco-600: #68432d;
  --choco-700: #4f3122;
  --choco-800: #351f15;
  --choco-900: #22120c;
  --ink-soft: #7e5a44;
  --white: #ffffff;
  --glass: rgba(255, 247, 238, 0.14);
  --shadow-soft: 0 16px 30px rgba(34, 18, 12, 0.12);
  --shadow-deep: 0 28px 60px rgba(34, 18, 12, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  color: var(--choco-700);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 246, 233, 0.9), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(236, 209, 177, 0.6), transparent 38%),
    linear-gradient(180deg, #f9ecdd 0%, #fff8ef 34%, #f6e9dc 100%);
  line-height: 1.65;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  margin: 0 0 12px;
  line-height: 1.18;
}

p {
  margin: 0 0 16px;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--toffee);
  font-weight: 700;
  margin-bottom: 12px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(26, 14, 9, 0.92);
  border-bottom-color: rgba(236, 209, 177, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  perspective: 1000px;
}

.logo-coin {
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  animation: logoSpinHorizontal 6s linear infinite;
}

.logo-image {
  height: 112px;
  width: auto;
  object-fit: contain;
  transform-origin: center center;
  grid-area: 1 / 1;
  backface-visibility: hidden;
}

.logo-front {
  transform: rotateY(0deg);
}

.logo-back {
  transform: rotateY(180deg);
}

.logo-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.28rem, 2vw, 1.85rem);
  font-weight: 700;
  color: var(--cream-50);
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.32);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--toffee), var(--caramel));
  color: var(--cream-50);
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
}

.logo-text {
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 12px;
  font-weight: 600;
  color: var(--cream-100);
  margin-left: 0;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  background: rgba(236, 209, 177, 0.16);
  color: var(--white);
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #c48f5f, #9a6338);
  color: var(--cream-50);
  box-shadow: 0 12px 28px rgba(34, 18, 12, 0.33);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn-ghost {
  border-color: rgba(211, 173, 131, 0.5);
  color: var(--cream-50);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  background: rgba(236, 209, 177, 0.14);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 156px 0 0;
  background: #2b1a12;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(24, 12, 7, 0.88) 0%, rgba(39, 22, 14, 0.8) 42%, rgba(66, 42, 28, 0.65) 100%),
    radial-gradient(circle at 72% 18%, rgba(211, 173, 131, 0.2), transparent 46%);
}

.hero-glow {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-glow-left {
  width: 320px;
  height: 320px;
  left: -120px;
  top: 40px;
  background: radial-gradient(circle, rgba(211, 173, 131, 0.22), transparent 65%);
}

.hero-glow-right {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -60px;
  background: radial-gradient(circle, rgba(255, 248, 238, 0.2), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  min-height: min(78vh, 700px);
}

.hero-content {
  color: var(--cream-100);
  max-width: 640px;
}

.hero-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}

.hero-logo-coin .logo-image {
  height: 128px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 3vw, 3.8rem);
  color: var(--cream-50);
  text-wrap: balance;
}

.hero-content p {
  color: rgba(255, 238, 219, 0.88);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0;
}

.image-frame {
  --parallax-y: 0px;
  background: linear-gradient(145deg, rgba(247, 230, 209, 0.22), rgba(211, 173, 131, 0.15));
  border-radius: 34% 66% 59% 41% / 42% 36% 64% 58%;
  padding: 20px;
  border: 1px solid rgba(255, 248, 238, 0.25);
  box-shadow: var(--shadow-deep);
  transform: translate3d(0, var(--parallax-y), 0);
  animation: floatFrame 7s ease-in-out infinite;
}

.image-slot {
  min-height: 280px;
  border-radius: 28px;
  border: 2px dashed rgba(95, 57, 33, 0.35);
  display: grid;
  place-items: center;
  text-align: center;
  gap: 6px;
  color: var(--choco-600);
  background: linear-gradient(140deg, rgba(255, 253, 248, 0.95), rgba(246, 232, 216, 0.65));
  padding: 24px;
}

.image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.image-slot.has-image {
  border: none;
  padding: 0;
  background: transparent;
}

.image-slot small {
  font-size: 0.8rem;
}

.scallop-divider {
  height: 52px;
  margin-top: 40px;
  background: radial-gradient(circle at 26px 0, transparent 25px, #fff7ef 26px)
    repeat-x;
  background-size: 52px 52px;
  background-position: 0 -26px;
}

.highlights {
  background:
    linear-gradient(180deg, #2a1811 0%, #25160f 100%),
    radial-gradient(circle at 70% 0%, rgba(211, 173, 131, 0.2), transparent 52%);
  color: var(--cream-100);
  padding: 58px 0 74px;
}

.highlight-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-card {
  background: rgba(255, 247, 238, 0.06);
  border: 1px solid rgba(247, 230, 209, 0.16);
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.22);
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.highlight-card:hover {
  background: rgba(255, 247, 238, 0.11);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d4ab80, #a56f44);
  color: var(--choco-900);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-weight: 700;
}

.catalog {
  position: relative;
  padding: 84px 0 58px;
  background:
    radial-gradient(circle at 14% 14%, rgba(236, 209, 177, 0.36), transparent 42%),
    radial-gradient(circle at 78% 30%, rgba(255, 226, 207, 0.45), transparent 40%),
    linear-gradient(180deg, #fff9f2 0%, #fbefdf 100%);
}

.catalog-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 40%, rgba(244, 194, 199, 0.16), transparent 38%),
    radial-gradient(circle at 86% 66%, rgba(211, 173, 131, 0.16), transparent 36%);
}

.catalog-shell {
  position: relative;
  z-index: 1;
}

.section-title {
  max-width: 660px;
  margin-bottom: 44px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.catalog-pillboard {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 48px;
  background: linear-gradient(180deg, #f8e8dc 0%, #f3ddd0 100%);
  border: 1px solid rgba(185, 131, 84, 0.18);
  border-radius: 24px;
  padding: 18px 22px 26px;
  box-shadow: 0 16px 28px rgba(34, 18, 12, 0.08);
  overflow: hidden;
}

.catalog-pillboard::after {
  content: "";
  position: absolute;
  left: -2%;
  bottom: -24px;
  width: 104%;
  height: 42px;
  background: radial-gradient(circle at 22px 0, transparent 20px, #fff7ef 21px) repeat-x;
  background-size: 44px 44px;
  background-position: 0 -22px;
}

.pill-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(185, 131, 84, 0.2);
  border-radius: 16px;
  padding: 10px 12px;
}

.pill-item h3 {
  margin-bottom: 2px;
  font-size: 1.02rem;
}

.pill-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.pill-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(140deg, #f9d3ad, #d79a66);
  color: var(--choco-900);
  flex: 0 0 auto;
}

.menu-flow {
  position: relative;
  padding: 12px 0 10px;
  display: grid;
  gap: 40px;
}

.menu-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.92;
  pointer-events: none;
}

.dot-a {
  width: 9px;
  height: 9px;
  left: 4%;
  top: 6%;
  background: #efb877;
}

.dot-b {
  width: 14px;
  height: 14px;
  right: 8%;
  top: 20%;
  background: #f2a8bf;
}

.dot-c {
  width: 8px;
  height: 8px;
  left: 10%;
  top: 46%;
  background: #e1a75f;
}

.dot-d {
  width: 10px;
  height: 10px;
  right: 18%;
  top: 62%;
  background: #d88f56;
}

.dot-e {
  width: 12px;
  height: 12px;
  left: 2%;
  bottom: 8%;
  background: #f3b8cf;
}

.flow-item {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.flow-right {
  grid-template-columns: 1.08fr 0.92fr;
}

.flow-left {
  grid-template-columns: 0.92fr 1.08fr;
}

.flow-image {
  width: min(100%, 340px);
  margin-inline: auto;
}

.bubble-bg {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 24px;
  box-shadow: 0 18px 30px rgba(34, 18, 12, 0.14);
}

.bubble-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bubble-cream {
  background: radial-gradient(circle at 35% 20%, #fff5df, #f5debf 68%, #edcfab);
}

.bubble-rose {
  background: radial-gradient(circle at 35% 20%, #fff5df, #f5debf 68%, #edcfab);
}

.flow-copy {
  max-width: 460px;
}

.cloud-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(185, 131, 84, 0.2);
  border-radius: 42% 58% 53% 47% / 34% 37% 63% 66%;
  padding: 28px 30px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(2px);
}

.cloud-card h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.cloud-card p {
  color: var(--ink-soft);
}

.feature-list {
  padding-left: 18px;
  margin: 0;
}

.feature-list li {
  margin-bottom: 8px;
}

.eggs-title {
  margin: 30px 0 16px;
}

.eggs-title h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  margin-bottom: 6px;
}

.eggs-title p {
  margin: 0;
  color: var(--ink-soft);
}

.product-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(185, 131, 84, 0.2);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 36px rgba(34, 18, 12, 0.16);
}

.product-image {
  min-height: 170px;
  border-radius: 0;
}

.product-info {
  padding: 18px;
}

.price {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  color: var(--caramel);
}

.mimos-header {
  margin: 54px 0 18px;
  max-width: 620px;
}

.mimos-header h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  margin-bottom: 6px;
}

.mimos-header p {
  margin: 0;
  color: var(--ink-soft);
}

.mimos-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about {
  padding: 76px 0;
  background:
    linear-gradient(180deg, #f8ecde 0%, #fff7eb 100%),
    radial-gradient(circle at 76% 18%, rgba(211, 173, 131, 0.2), transparent 45%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.about-image {
  min-height: 300px;
}

.about-image img {
  object-position: center top;
}

.contact {
  padding: 72px 0 96px;
  background: linear-gradient(160deg, #2b1a12, #1f120c 72%);
  color: var(--cream-100);
}

.contact .eyebrow {
  color: var(--latte);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.contact-card {
  background: var(--glass);
  border: 1px solid rgba(247, 230, 209, 0.22);
  padding: 34px;
  border-radius: 24px;
  backdrop-filter: blur(8px);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.info-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 247, 238, 0.07);
  border: 1px solid rgba(247, 230, 209, 0.16);
}

.site-footer {
  padding: 26px 0 40px;
  text-align: center;
  color: rgba(255, 238, 219, 0.78);
  background: #1b100b;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes floatFrame {
  0%,
  100% {
    transform: translate3d(0, var(--parallax-y), 0);
  }
  50% {
    transform: translate3d(0, calc(var(--parallax-y) - 8px), 0);
  }
}

@keyframes logoSpinHorizontal {
  0% {
    transform: perspective(900px) rotateY(0deg);
  }
  25% {
    transform: perspective(900px) rotateY(82deg);
  }
  50% {
    transform: perspective(900px) rotateY(180deg);
  }
  75% {
    transform: perspective(900px) rotateY(262deg);
  }
  100% {
    transform: perspective(900px) rotateY(360deg);
  }
}

@media (max-width: 1000px) {
  .hero-grid,
  .flow-item,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .flow-copy {
    margin-inline: auto;
  }

  .hero {
    padding-top: 146px;
  }
}

@media (max-width: 720px) {
  .nav {
    gap: 14px;
    padding: 12px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 8px;
    margin-left: 0;
  }

  .logo-name {
    font-size: 1.2rem;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .highlight-grid,
  .product-grid,
  .mimos-grid {
    grid-template-columns: 1fr;
  }

  .catalog-pillboard {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 24px;
  }

  .flow-item {
    gap: 20px;
  }

  .flow-item .flow-image {
    order: 1;
  }

  .flow-item .flow-copy {
    order: 2;
  }

  .scallop-divider {
    margin-top: 30px;
  }
}

@media (max-width: 540px) {
  .btn {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .logo-image {
    height: 86px;
  }

  .hero-logo-coin .logo-image {
    height: 360px;
  }

  .logo-name {
    font-size: 1rem;
  }

  .contact-card,
  .highlight-card {
    padding: 22px;
  }

  .cloud-card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .flow-image {
    width: min(100%, 280px);
  }

  .image-slot {
    min-height: 230px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
