body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff8f3;
  color: #6f5148;
}

.hero {
  position: relative;
  height: 45vh;
  min-height: 350px;
  padding: 40px 24px 44px;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  text-align: center;
  background: #f8decb;
  overflow: hidden;
}

.hero-logo-stack {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeInUp 1.15s cubic-bezier(0.22, 1, 0.36, 1) 1.85s forwards;
}

body.welcome-complete .hero-logo-stack {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.hero-cloud {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0.82;
  filter: drop-shadow(0 12px 18px rgba(122, 92, 82, 0.08));
  animation: cloudDrift 9s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.hero-cloud-left {
  width: min(24vw, 210px);
  left: calc(50% - 340px);
  bottom: 30%;
}

.hero-cloud-right {
  width: min(32vw, 280px);
  right: calc(50% - 365px);
  bottom: 2%;
  animation-delay: 1.2s;
}

.hero-cloud-small-top {
  width: min(16vw, 140px);
  right: 8%;
  top: 8%;
  opacity: 0.48;
  animation-duration: 10s;
}

.hero-cloud-small-bottom {
  width: min(18vw, 150px);
  left: 8%;
  bottom: 6%;
  opacity: 0.42;
  animation-duration: 9s;
  animation-delay: 0.7s;
}

.hero-cloud-tiny-left {
  width: min(13vw, 110px);
  left: 24%;
  top: 18%;
  opacity: 0.42;
  animation-duration: 9.5s;
  animation-delay: 1.6s;
}

.hero-cloud-tiny-right {
  width: min(14vw, 120px);
  right: 23%;
  bottom: 30%;
  opacity: 0.42;
  animation-duration: 10.5s;
  animation-delay: 0.4s;
}

.hero-logo {
  width: clamp(140px, 28vw, 230px);
  max-width: 72vw;
  height: auto;
  filter:
    drop-shadow(0 18px 28px rgba(122, 92, 82, 0.18))
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.54));
}

.mood-indicator {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.mood-dots {
  display: flex;
  gap: 13px;
}

.mood-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #d3c4ba;
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}

.mood-dot.active {
  background: #9b7665;
  transform: scale(1.25);
}

.mood-label {
  min-height: 30px;
  margin: 0;
  margin-top: 0.25em;
  color: #6f5148;
  font-size: clamp(1.4rem, 5.5vw, 2rem);
  font-weight: 700;
  font-family: 'Mochiy Pop One', sans-serif;
}

.mood-label.is-changing {
  animation: softFade 0.5s ease;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  background: #74564d;
  color: #fff8f3;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(122, 92, 82, 0.16);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.hero-button:hover {
  background: #6a4d45;
  box-shadow: 0 16px 28px rgba(122, 92, 82, 0.22);
  transform: translateY(-2px);
}

.about-section {
  padding: 72px 24px;
  background: #fff8f3;
}

.about-content {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  align-items: center;
  gap: 44px;
}

.about-copy h2 {
  margin: 0 0 18px;
  color: #74564d;
  font-family: 'Mochiy Pop One', sans-serif;
  font-size: clamp(2rem, 6.5vw, 3.4rem);
  line-height: 1.15;
}

.about-copy p {
  margin: 0;
  color: #6f5148;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  line-height: 1.8;
}

.about-image {
  display: block;
  width: min(100%, 440px);
  height: auto;
  margin: 0 auto;
}

#pistache-title {
  color: #dee8b9;
  -webkit-text-stroke: 0.3px black;
}

@media (min-width: 768px) {
  #pistache-title {
    -webkit-text-stroke: 1px black;
  }
}

#cafe-title {
  color: #edb363;
  -webkit-text-stroke: 0.3px black;
}

@media (min-width: 768px) {
  #cafe-title {
    -webkit-text-stroke: 1px black;
  }
}

#chocolate-title {
  color: #cd8b61;
  -webkit-text-stroke: 0.3px black;
}

@media (min-width: 768px) {
  #chocolate-title {
    -webkit-text-stroke: 1px black;
  }
}

#pinacoco-title {
  color: #ffe69d;
  -webkit-text-stroke: 0.3px black;
}

@media (min-width: 768px) {
  #pinacoco-title {
    -webkit-text-stroke: 1px black;
  }
}

#fresa-title {
  color: #faa6a3;
  -webkit-text-stroke: 0.3px black;
}

@media (min-width: 768px) {
  #fresa-title {
    -webkit-text-stroke: 1px black;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.flavor-menu {
  opacity: 0;
}

.flavor-menu.is-visible {
  animation: blurIn 1.0s ease forwards;
}

@keyframes cloudDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(14px, -8px, 0);
  }
}

@media (max-width: 640px) {
  #welcome-text {
    text-align: center;
    line-height: 1.25;
  }

  #logo {
    width: 95px;
    max-width: 95px;
  }

  .hero-logo {
    width: clamp(125px, 30vw, 135px);
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    width: min(100%, 360px);
  }

  .hero-cloud-left {
    width: 190px;
    left: -95px;
    bottom: 34%;
  }

  .hero-cloud-right {
    width: 250px;
    right: -125px;
    bottom: -4%;
  }

  .hero-cloud-small-top {
    width: 118px;
    right: 8px;
    top: 12px;
    opacity: 0.38;
  }

  .hero-cloud-small-bottom {
    width: 116px;
    left: 8px;
    bottom: 12px;
    opacity: 0.34;
  }

  .hero-cloud-tiny-left {
    display: none;
  }

  .hero-cloud-tiny-right {
    display: none;
  }
}

#welcome-screen {

  position: fixed;

  inset: 0;

  background:
   #fff8f3;
  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  gap: 20px;

  z-index: 9999;

  transition: opacity 1.35s ease, visibility 1.35s ease;

  color: #6f5148;

  visibility: visible;
}

/* LOGO */

#logo {

  width: 220px;
  max-width: 220px;
  opacity: 0;
  transform: translateY(10px);

  filter:
    drop-shadow(0 16px 24px rgba(122, 92, 82, 0.18))
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.48));
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;

}

/* TEXTO */

#welcome-text {

  position: relative;

  font-family: 'Mochiy Pop One', sans-serif;

  font-size: clamp(2.2rem, 10vw, 3.3rem);

  color: #ffd2b4;

  -webkit-text-stroke: 1.5px #74564d;

  text-shadow:
    0 3px 0 rgba(255, 255, 255, 0.48),
    0 9px 18px rgba(122, 92, 82, 0.18);

  opacity: 0;

  transform: translateY(10px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

/* GLOW */

#welcome-text::before {

  content: "";

  position: absolute;

  width: min(320px, 76vw);
  height: 110px;

  background: linear-gradient(90deg, rgba(255, 212, 184, 0.18), rgba(255, 248, 243, 0.52), rgba(244, 217, 198, 0.22));

  filter: blur(36px);

  z-index: -1;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);
}

/* APARECER */

#welcome-text.show,
#logo.show {

  opacity: 1;

  transform: translateY(0px);
}

#logo.show {
  filter:
    drop-shadow(0 18px 28px rgba(122, 92, 82, 0.2))
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.5));
}

/* DESAPARECER */

#welcome-screen.hide {

  opacity: 0;

  visibility: hidden;

  pointer-events: none;
}

.menu-page {
  min-height: 100vh;
  background: #fff8f3;
}

.menu-hero {
  position: relative;
  min-height: 30vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #f8decb;
  animation: menuHeroAppear 0.7s ease both;
}

.menu-hero-title {
  margin: 0;
  font-family: 'Mochiy Pop One', sans-serif;
  color: #6f5148;
  -webkit-text-stroke: 1.5px #74564d;
  text-shadow:
    0 3px 0 rgba(255, 255, 255, 0.48),
    0 14px 28px rgba(111, 81, 72, 0.24);
}

.menu-hero-wordmark {
  position: relative;
  z-index: 2;
  display: inline-block;
  --menu-wordmark-x: 0;
  opacity: 0;
  transform: translate(var(--menu-wordmark-x), 12px);
  animation: menuContentAppear 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.menu-hero-title {
  position: relative;
  z-index: 1;
  padding: 0 22px;
  font-size: clamp(3rem, 13vw, 8rem);
  line-height: 1.04;
  text-align: center;
}

.menu-hero-image {
  position: absolute;
  left: calc(100% - clamp(58px, 8.2vw, 124px));
  top: 48%;
  z-index: 2;
  width: clamp(150px, 18vw, 262px);
  max-width: 38vw;
  height: auto;
  object-fit: contain;
  transform: translateY(-4%);
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 12px 18px rgba(111, 81, 72, 0.16));
}

@keyframes menuHeroAppear {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes menuContentAppear {
  from {
    opacity: 0;
    transform: translate(var(--menu-wordmark-x), 12px);
  }

  to {
    opacity: 1;
    transform: translate(var(--menu-wordmark-x), 0);
  }
}

.flavor-menu {
  padding: clamp(8px, 1.5vw, 16px) 24px;
  background: #fff8f3;
}

.flavor-menu-content {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(240px, 380px);
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 7vw, 72px);
}

.flavor-menu-copy {
  justify-self: center;
  width: min(100%, 320px);
}

.flavor-menu-copy h2 {
  margin: 0 0 22px;
  color: #6f5148;
  font-family: 'Mochiy Pop One', sans-serif;
  font-size: clamp(2.2rem, 6.5vw, 4rem);
  line-height: 1.1;
}

.flavor-description {
  margin: 0 0 18px;
  color: #6f5148;
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.55;
}

.flavor-description.is-changing {
  animation: softFade 0.5s ease;
}

.flavor-description-cafe,
.flavor-description-chocolate,
.flavor-description-pinacoco,
.flavor-description-fresa {
  margin: 0 0 18px;
  color: #6f5148;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 700;
  line-height: 1.55;
}

.flavor-description-cafe.is-changing,
.flavor-description-chocolate.is-changing,
.flavor-description-pinacoco.is-changing,
.flavor-description-fresa.is-changing {
  animation: softFade 0.5s ease;
}

.flavor-note {
  margin: -8px 0 16px;
  color: #6f5148;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  line-height: 1.45;
}

.flavor-price-table {
  width: 100%;
  border-collapse: collapse;
  color: #6f5148;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
}

.flavor-price-table th,
.flavor-price-table td {
  padding: 7px 0;
  border: 0;
  text-align: left;
}

.flavor-price-table th {
  font-weight: 700;
}

.flavor-price-table td {
  text-align: right;
  font-weight: 700;
}

.flavor-menu-image {
  display: block;
  width: min(100%, 400px);
  height: auto;
  padding-left: 40px;
  box-sizing: border-box;
  justify-self: center;
  filter: drop-shadow(0 18px 28px rgba(111, 81, 72, 0.14));
}

.menu-footer {
  padding: 56px 24px 48px;
  text-align: center;
  background: #f8decb;
  border-top: 2px solid #f0ddd0;
  animation: menuContentAppear 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.menu-footer p {
  margin: 0;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #6f5148;
  font-family: 'Mochiy Pop One', sans-serif;
  letter-spacing: 0.5px;
}

@media (max-width: 640px) {
  .menu-hero {
    padding: 0 16px;
    box-sizing: border-box;
  }

  .menu-hero-wordmark {
    --menu-wordmark-x: -4vw;
  }

  .menu-hero-image {
    left: calc(100% - clamp(62px, 19vw, 92px));
    top: 54%;
    width: clamp(122px, 29vw, 154px);
    max-width: 34vw;
  }

  .menu-hero-title {
    padding: 0 8px;
    font-size: clamp(2.5rem, 15vw, 4.7rem);
  }

  .flavor-menu {
    padding: 38px 20px 56px;
  }

  .flavor-menu-content {
    grid-template-columns: minmax(86px, 0.72fr) minmax(160px, 1.28fr);
    align-items: center;
    gap: 10px;
  }

  .flavor-menu-copy {
    display: block;
    width: 100%;
    justify-self: end;
  }

  .flavor-menu-copy h2 {
    margin-bottom: 10px;
    text-align: left;
    font-size: clamp(1.65rem, 6.5vw, 2.25rem);
  }

  .flavor-description {
    margin-bottom: 5px;
    font-size: clamp(1rem, 3.7vw, 1.1rem);
    line-height: 1.45;
  }

  .flavor-note {
    margin: 0 0 5px;
    font-size: clamp(1.05rem, 3.8vw, 1.15rem);
    line-height: 1.35;
  }

  .flavor-price-table {
    font-size: clamp(1rem, 3.7vw, 1.1rem);
  }

  .flavor-price-table th,
  .flavor-price-table td {
    padding: 2px 0;
  }

  .flavor-menu-image {
    width: min(100%, 260px);
    padding-left: 0;
    justify-self: start;
    filter: drop-shadow(0 18px 24px rgba(111, 81, 72, 0.26));
  }

  .menu-footer {
    padding: 32px 16px 28px;
    text-align: center;
  }

  .menu-footer p {
    font-size: clamp(1.1rem, 4.3vw, 1.25rem);
  }
}

/* WHY SECTION */

.why-section {
  padding: 72px 24px;
  background: #fff8f3;
}

.why-content {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 440px) minmax(0, 1fr);
  align-items: center;
  gap: 44px;
}

.why-copy {
  order: 1;
}

.why-image {
  order: 0;
}

.why-copy h2 {
  margin: 0 0 18px;
  color: #74564d;
  font-family: 'Mochiy Pop One', sans-serif;
  font-size: clamp(2rem, 6.5vw, 3.4rem);
  line-height: 1.15;
}

.why-intro {
  margin: 0 0 28px;
  color: #6f5148;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  line-height: 1.8;
  font-weight: 600;
}

.why-list {
  list-style: disc;
  margin: 0;
  padding: 0 0 0 28px;
  display: grid;
  gap: 14px;
}

.why-list li {
  color: #6f5148;
  font-size: clamp(1.1rem, 2.8vw, 1.25rem);
  line-height: 1.6;
  padding-left: 8px;
}

.why-list li strong {
  color: #74564d;
  font-weight: 700;
}

.why-list li:hover {
  color: #74564d;
}

.why-image {
  display: block;
  width: min(100%, 440px);
  height: auto;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .why-section {
    padding: 48px 16px;
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-copy {
    order: 0;
  }

  .why-image {
    order: 1;
    width: min(100%, 360px);
  }

  .why-list {
    gap: 12px;
  }

  .why-list li {
    font-size: clamp(1rem, 2.8vw, 1.15rem);
    padding-left: 6px;
  }
}

/* AVAILABILITY SECTION */

.availability-section {
  padding: 72px 24px;
  background: #fff8f3;
}

.availability-content {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  justify-items: start;
  gap: 32px;
}

.availability-section h2 {
  margin: 0;
  color: #74564d;
  font-family: 'Mochiy Pop One', sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  line-height: 1.15;
}

.availability-list {
  list-style: disc;
  margin: 0;
  padding: 0 0 0 28px;
  display: grid;
  gap: 12px;
  text-align: left;
}

.availability-list li {
  color: #6f5148;
  font-size: clamp(1.2rem, 3.3vw, 1.5rem);
  line-height: 1.6;
  font-weight: 500;
  transition: all 0.25s ease;
}

.availability-list li:hover {
  color: #74564d;
  transform: translateX(4px);
}

.availability-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 48px;
  border-radius: 999px;
  background: #74564d;
  color: #fff8f3;
  font-weight: 700;
  font-size: clamp(1.25rem, 3.3vw, 1.55rem);
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(122, 92, 82, 0.16);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  margin-top: 16px;
  justify-self: center;
}

.availability-button:hover {
  background: #6a4d45;
  box-shadow: 0 16px 28px rgba(122, 92, 82, 0.22);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .availability-section {
    padding: 48px 16px;
  }

  .availability-list li {
    line-height: 1.4;
  }

  .availability-content {
    gap: 24px;
  }

  .availability-section h2 {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }

  .availability-list li {
    font-size: clamp(1rem, 2.8vw, 1.15rem);
    padding: 10px 14px;
  }

  .availability-button {
    min-height: 48px;
    padding: 0 40px;
    font-size: clamp(1.1rem, 2.8vw, 1.25rem);
  }
}

@media (min-width: 768px) {
  .availability-section h2 {
    white-space: nowrap;
  }
}

/* FOOTER */

.footer {
  background: #f8decb;
  padding: 60px 24px 40px;
  border-top: 2px solid #f0ddd0;
}

.footer-content {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
  text-align: center;
}

.footer-main {
  display: grid;
  gap: 24px;
}

.footer-brand h3 {
  margin: 0;
  color: #74564d;
  font-family: 'Mochiy Pop One', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  line-height: 1.15;
}

.footer-brand p {
  margin: 0;
  color: #6f5148;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  line-height: 1.6;
  font-weight: 500;
}

.footer-info p {
  margin: 0;
  color: #6f5148;
  font-size: clamp(1rem, 2.8vw, 1.1rem);
  line-height: 1.5;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer-social a {
  color: #74564d;
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border-bottom: 2px solid #74564d;
  padding-bottom: 4px;
}

.footer-social a:hover {
  color: #6a4d45;
  border-bottom-color: #6a4d45;
}

.footer-closing p {
  margin: 0;
  color: #6f5148;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  line-height: 1.6;
  font-style: italic;
  opacity: 0.85;
}

@media (max-width: 640px) {
  .footer {
    padding: 40px 16px 30px;
  }

  .footer-content {
    gap: 32px;
  }

  .footer-social {
    gap: 24px;
  }

  .footer-social a {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  }

  .footer-closing p {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
  }
}
