:root {
  --pink: #ef3f9a;
  --hot-pink: #ff4fac;
  --peach: #ffb066;
  --lemon: #ffe26f;
  --sky: #7ed7ff;
  --cream: #fff6e7;
  --ink: #100b10;
  --white: #ffffff;
  --muted: rgba(16, 11, 16, 0.66);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Nunito Sans", Arial, sans-serif;
}

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

.promo-bar {
  display: flex;
  gap: 34px;
  overflow: hidden;
  padding: 9px 0;
  color: var(--ink);
  background: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: lowercase;
  white-space: nowrap;
}

.promo-bar span {
  min-width: max-content;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-240px); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px clamp(18px, 5vw, 54px);
  background: rgba(255, 246, 231, 0.88);
  backdrop-filter: blur(16px);
}

.site-header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.site-header nav a,
.header-link {
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: lowercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1.16rem;
  letter-spacing: 0;
}

.header-link {
  justify-self: end;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  background: var(--pink);
}

.hero::after {
  position: absolute;
  inset: clamp(18px, 3vw, 34px);
  content: "";
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(16, 11, 16, 0.34), rgba(16, 11, 16, 0.08) 58%);
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: clamp(18px, 3vw, 34px);
  border-radius: var(--radius);
  background:
    linear-gradient(0deg, rgba(16, 11, 16, 0.14), rgba(16, 11, 16, 0.14)),
    url("https://images.unsplash.com/photo-1517701604599-bb29b565090c?auto=format&fit=crop&w=1800&q=82")
    center / cover;
  animation: slow-zoom 16s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(930px, 100%);
  padding: clamp(22px, 4vw, 48px);
  animation: rise-in 700ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: lowercase;
}

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

h1,
h2,
h3 {
  font-family: "Archivo Black", Impact, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(4.2rem, 12vw, 10.6rem);
  line-height: 0.84;
  text-transform: lowercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6vw, 6.5rem);
  line-height: 0.9;
  text-transform: lowercase;
}

h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  line-height: 0.92;
  text-transform: lowercase;
}

p {
  line-height: 1.55;
}

.hero-actions,
.section-title,
.footer-grid,
.footer-grid nav {
  display: flex;
  align-items: center;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: lowercase;
}

.button.dark {
  color: var(--white);
  background: var(--ink);
}

.button.light {
  color: var(--ink);
  background: var(--white);
}

.mood-section,
.feature-band,
.menu-section,
.order-section,
.visit-section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.section-title {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title.stacked {
  display: block;
}

.section-title a {
  font-weight: 900;
  text-transform: lowercase;
}

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

.mood-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--ink);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.mood-card:hover,
.product-list article:hover,
.order-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 0 rgba(16, 11, 16, 0.08);
}

.mood-card.orange {
  background: var(--peach);
}

.mood-card.blue {
  background: var(--sky);
}

.mood-card.pink {
  background: var(--pink);
}

.mood-img {
  min-height: 290px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  transition: transform 360ms ease;
}

.mood-card:hover .mood-img {
  transform: scale(1.035);
}

.coffee-img {
  background-image: url("https://images.unsplash.com/photo-1517701604599-bb29b565090c?auto=format&fit=crop&w=1000&q=80");
}

.smoothie-img {
  background-image: url("https://images.unsplash.com/photo-1502741224143-90386d7f8c82?auto=format&fit=crop&w=1000&q=80");
}

.tea-img {
  background-image: url("https://images.unsplash.com/photo-1556679343-c7306c1976bc?auto=format&fit=crop&w=1000&q=80");
}

.mood-card p {
  margin: 0;
  font-weight: 900;
  text-transform: lowercase;
}

.mood-card span {
  max-width: 320px;
  color: rgba(16, 11, 16, 0.72);
  font-weight: 800;
}

.mood-card a {
  width: fit-content;
  font-weight: 900;
  text-transform: lowercase;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: var(--lemon);
}

.feature-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 800;
}

.feature-collage {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 16px;
  align-items: stretch;
}

.collage-img,
.collage-note {
  min-height: 280px;
  border-radius: var(--radius);
}

.collage-img {
  background-size: cover;
  background-position: center;
  transition: transform 320ms ease, filter 320ms ease;
}

.feature-collage:hover .collage-img {
  filter: saturate(1.12) contrast(1.04);
}

.collage-img.one {
  background-image: url("https://images.unsplash.com/photo-1577805947697-89e18249d767?auto=format&fit=crop&w=900&q=80");
  animation: floaty 4.5s ease-in-out infinite;
}

.collage-img.two {
  background-image: url("https://images.unsplash.com/photo-1622597467836-f3285f2131b8?auto=format&fit=crop&w=900&q=80");
  animation: floaty-tilt 5.4s ease-in-out infinite reverse;
}

.collage-note {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(12px, 1.8vw, 20px);
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
  color: var(--white);
  background: var(--ink);
  text-transform: lowercase;
  text-align: center;
  isolation: isolate;
  animation: pulse-card 4.8s ease-in-out infinite;
}

.collage-note::before,
.collage-note::after {
  position: absolute;
  content: "";
  z-index: -1;
  border-radius: 999px;
  background: var(--pink);
  opacity: 0.82;
  filter: blur(0.2px);
}

.collage-note::before {
  width: clamp(72px, 8vw, 108px);
  height: clamp(72px, 8vw, 108px);
  top: clamp(18px, 3vw, 32px);
  right: clamp(18px, 3vw, 32px);
  animation: bubble-orbit 6s ease-in-out infinite;
}

.collage-note::after {
  width: clamp(38px, 5vw, 62px);
  height: clamp(38px, 5vw, 62px);
  left: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 30px);
  background: var(--lemon);
  animation: bubble-orbit 5.4s ease-in-out infinite reverse;
}

.collage-note span {
  font-weight: 900;
}

.collage-note span {
  color: var(--pink);
  font-size: clamp(0.9rem, 1.3vw, 1.18rem);
}

.collage-note strong {
  max-width: 100%;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2.1rem, 3.45vw, 4.15rem);
  line-height: 0.88;
  overflow-wrap: normal;
  text-wrap: balance;
}

.sweetness-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.sweetness-pills em {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  animation: pill-pop 3.6s ease-in-out infinite;
}

.sweetness-pills em:nth-child(2) {
  animation-delay: 0.18s;
}

.sweetness-pills em:nth-child(3) {
  animation-delay: 0.36s;
  background: var(--pink);
}

.menu-section {
  color: var(--ink);
  background: var(--cream);
}

.menu-section .eyebrow {
  color: var(--pink);
}

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

.product-list article {
  position: relative;
  min-height: 275px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.menu-emoji {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  align-self: flex-end;
  margin-bottom: 22px;
  border-radius: 34px;
  border: 2px solid rgba(16, 11, 16, 0.08);
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.86), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), transparent 48%),
    rgba(255, 255, 255, 0.32);
  box-shadow: 0 16px 0 rgba(16, 11, 16, 0.12);
  font-size: 3.6rem;
  line-height: 1;
  transform: rotate(-7deg);
  animation: sticker-wiggle 4.8s ease-in-out infinite;
}

.product-list article:nth-child(3n + 1) {
  background: var(--peach);
}

.product-list article:nth-child(3n + 2) {
  background: var(--sky);
}

.product-list article:nth-child(3n) {
  background: var(--pink);
}

.product-list article:nth-child(4n) .menu-emoji {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.86), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), transparent 48%),
    rgba(255, 226, 111, 0.72);
}

.product-list p {
  margin: 0 0 8px;
  font-weight: 900;
  text-transform: lowercase;
}

.product-list h3 {
  max-width: 360px;
  margin-bottom: 12px;
}

.product-list span {
  color: rgba(16, 11, 16, 0.72);
  font-weight: 900;
}

.order-section {
  background: var(--pink);
}

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

.order-grid article {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

@keyframes slow-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}

@keyframes floaty-tilt {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(12px) rotate(1.2deg) scale(1.015); }
}

@keyframes pulse-card {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.018); }
}

@keyframes bubble-orbit {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-18px, 14px) scale(1.16); }
}

@keyframes pill-pop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes sticker-wiggle {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-5px); }
}

.order-grid strong {
  font-weight: 900;
}

.order-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: stretch;
  background: var(--sky);
}

.visit-card,
.location-panel {
  border-radius: var(--radius);
}

.visit-card {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 56px);
  background: var(--cream);
}

.visit-card p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-weight: 800;
}

.location-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--ink);
}

.location-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
  text-transform: lowercase;
}

footer {
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 72px) 28px;
  color: var(--white);
  background: var(--ink);
}

footer h2 {
  max-width: 860px;
  color: var(--pink);
}

.footer-grid {
  justify-content: space-between;
  gap: 22px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-grid div {
  display: grid;
  gap: 8px;
}

.footer-grid strong,
.footer-grid a {
  font-weight: 900;
  text-transform: lowercase;
}

.footer-grid span {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

@media (max-width: 920px) {
  .mood-grid,
  .feature-band,
  .order-grid,
  .visit-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 680px;
  }

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

  .feature-collage {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-grid nav {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .promo-bar {
    gap: 22px;
    font-size: 0.72rem;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
    padding: 12px 14px 14px;
  }

  .site-header nav {
    order: 2;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .site-header nav a,
  .header-link {
    font-size: 0.86rem;
  }

  .brand {
    order: 1;
    min-width: 108px;
    min-height: 42px;
  }

  .header-link {
    order: 3;
    justify-self: center;
  }

  .hero {
    min-height: 560px;
    padding: 14px;
  }

  .hero-image {
    inset: 14px;
  }

  .hero::after {
    inset: 14px;
    background:
      linear-gradient(0deg, rgba(16, 11, 16, 0.34), rgba(16, 11, 16, 0.18)),
      linear-gradient(90deg, rgba(16, 11, 16, 0.56), rgba(16, 11, 16, 0.16) 72%);
  }

  .hero .eyebrow {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(16, 11, 16, 0.76);
    backdrop-filter: blur(8px);
  }

  h1 {
    font-size: clamp(3.7rem, 18vw, 5.6rem);
    text-shadow: 0 3px 20px rgba(16, 11, 16, 0.32);
  }

  h2 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .button {
    width: 100%;
  }

  .mood-section,
  .feature-band,
  .menu-section,
  .order-section,
  .visit-section {
    padding: 48px 14px;
  }

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

  .product-list {
    grid-template-columns: 1fr;
  }

  .product-list article {
    min-height: 245px;
  }

  .collage-note strong {
    font-size: clamp(2rem, 12vw, 3.6rem);
  }

  .location-panel {
    min-height: 340px;
  }

  .map-overlay {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
