@charset "UTF-8";
.coffee-section {
  padding: 110px 32px 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top center, rgba(216, 176, 138, 0.12), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f8f3ee 100%);
}

.coffee-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}

.coffee-heading {
  text-align: center;
  margin-bottom: 64px;
}
.coffee-heading__top {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #4c1504;
  text-transform: uppercase;
}
.coffee-heading__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 3.5vw, 4.3rem);
  font-weight: 800;
  letter-spacing: 2px;
  color: #4c1504;
  text-transform: uppercase;
  line-height: 1.08;
}
.coffee-heading__divider {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.coffee-heading__divider span:not(.icon) {
  width: 38px;
  height: 2px;
  display: inline-block;
  background: #d8b08a;
  clip-path: polygon(0 100%, 12% 0, 24% 100%, 36% 0, 48% 100%, 60% 0, 72% 100%, 84% 0, 100% 100%);
}
.coffee-heading__divider .icon {
  font-size: 16px;
  color: #c97d45;
  line-height: 1;
}

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

.coffee-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(76, 21, 4, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}
.coffee-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(216, 176, 138, 0.08) 100%);
  pointer-events: none;
  z-index: 1;
}
.coffee-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 48%, transparent 100%);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.coffee-card:hover {
  transform: translateY(-10px) scale(1.015);
  border-color: rgba(216, 176, 138, 0.6);
  box-shadow: 0 26px 70px rgba(76, 21, 4, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.coffee-card:hover::after {
  opacity: 1;
  animation: coffeeCardShine 0.95s ease;
}
.coffee-card:hover .coffee-card__image img {
  transform: scale(1.06);
}
.coffee-card:hover .coffee-card__title {
  color: #6a240a;
}
.coffee-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.18/1;
  overflow: hidden;
  background: #ddd;
  z-index: 0;
}
.coffee-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.coffee-card__content {
  position: relative;
  z-index: 3;
  padding: 22px 24px 26px;
}
.coffee-card__title {
  margin: 0 0 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  font-family: "Playfair Display", serif;
  font-size: 1.38rem;
  font-weight: 800;
  color: #4c1504;
  text-transform: uppercase;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.coffee-card__number {
  font-size: 1.9rem;
  color: #c49a6c;
  line-height: 1;
}
.coffee-card__text {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  line-height: 1.95;
  color: #220101;
}

@keyframes coffeeCardShine {
  0% {
    left: -120%;
  }
  100% {
    left: 140%;
  }
}
/* TABLET */
@media (max-width: 991px) {
  .coffee-section {
    padding: 70px 20px 80px;
    min-height: auto;
    display: block;
    background: #ffffff;
  }
  .coffee-container {
    max-width: 760px;
  }
  .coffee-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .coffee-heading {
    margin-bottom: 42px;
  }
  .coffee-heading__top {
    margin: 0 0 8px;
    font-size: 12px;
    letter-spacing: 2px;
  }
  .coffee-heading__title {
    font-size: 26px;
    letter-spacing: 2px;
  }
  .coffee-heading__divider {
    margin-top: 14px;
    gap: 10px;
  }
  .coffee-heading__divider span:not(.icon) {
    width: 30px;
  }
  .coffee-heading__divider .icon {
    font-size: 14px;
  }
  .coffee-card {
    border-radius: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
  .coffee-card::before, .coffee-card::after {
    display: none;
  }
  .coffee-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
  }
  .coffee-card:hover .coffee-card__image img {
    transform: none;
  }
  .coffee-card:hover .coffee-card__title {
    color: #4c1504;
  }
  .coffee-card__image {
    aspect-ratio: 1.28/1;
  }
  .coffee-card__content {
    padding: 12px 0 0;
  }
  .coffee-card__title {
    margin: 0 0 10px;
    gap: 6px;
    font-size: 16px;
  }
  .coffee-card__number {
    font-size: 20px;
  }
  .coffee-card__text {
    font-size: 14px;
    line-height: 1.9;
  }
}
/* MOBILE */
@media (max-width: 640px) {
  .coffee-section {
    padding: 48px 16px 56px;
  }
  .coffee-container {
    max-width: 100%;
  }
  .coffee-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .coffee-heading {
    margin-bottom: 28px;
  }
  .coffee-heading__top {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  .coffee-heading__title {
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 1.35;
  }
  .coffee-card__title {
    font-size: 15px;
  }
  .coffee-card__number {
    font-size: 18px;
  }
  .coffee-card__text {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .coffee-card,
  .coffee-card::after,
  .coffee-card__image img,
  .coffee-card__title {
    transition: none !important;
    animation: none !important;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Playfair Display", serif;
  background: #140f06;
}

.about-coffee {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px;
  /* felső hullám */
  /* alsó hullám */
}
.about-coffee__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.about-coffee__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.46);
  transform: scale(1.03);
}
.about-coffee__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(33, 15, 8, 0.82) 0%, rgba(48, 23, 12, 0.78) 50%, rgba(26, 11, 7, 0.84) 100%);
}
.about-coffee__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 84px;
  align-items: center;
  padding: 64px 72px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.about-coffee__left {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-coffee__avatar {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.72);
  margin: 0 auto;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.04);
}
.about-coffee__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-coffee__right {
  color: #fff;
  padding: 10px 0;
}
.about-coffee__title {
  margin: 0 0 28px;
  font-size: clamp(2.8rem, 4vw, 4.1rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: #fff8f1;
  max-width: 780px;
}
.about-coffee__text {
  margin: 0 0 22px;
  max-width: 760px;
  line-height: 1.95;
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.9);
}
.about-coffee::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 100px;
  background: white;
  border-bottom-left-radius: 40% 100%;
  border-bottom-right-radius: 50% 100%;
  z-index: 4;
}
.about-coffee::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 100px;
  background: white;
  border-top-left-radius: 40% 100%;
  border-top-right-radius: 60% 100%;
  z-index: 4;
}

/* TABLET */
@media (max-width: 900px) {
  .about-coffee {
    padding: 80px 20px;
  }
  .about-coffee__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    max-width: 1000px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
  .about-coffee__left {
    justify-content: center;
  }
  .about-coffee__avatar {
    width: 180px;
    height: 180px;
    border: 6px solid rgba(255, 255, 255, 0.7);
    box-shadow: none;
  }
  .about-coffee__right {
    padding: 0;
  }
  .about-coffee__title {
    font-size: 2.2rem;
    margin: 0 0 20px;
    max-width: none;
  }
  .about-coffee__text {
    margin: 0 0 16px;
    line-height: 1.8;
    font-size: 1rem;
    max-width: none;
  }
}
/* MOBILE */
@media (max-width: 600px) {
  .about-coffee {
    padding: 60px 16px;
  }
  .about-coffee__avatar {
    width: 140px;
    height: 140px;
  }
  .about-coffee__title {
    font-size: 1.7rem;
  }
  .about-coffee__text {
    font-size: 0.95rem;
  }
}
.contact-map-section {
  padding: 100px 20px;
  background: #f3f3f3;
}

.contact-map-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.contact-section,
.map-section {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.contact-container,
.map-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  height: 100%;
}

/* ================= LEFT SIDE ================= */
.contact-section {
  display: flex;
}

.contact-container {
  display: flex;
  flex-direction: column;
}

.contact-heading {
  text-align: center;
  margin-bottom: 40px;
}
.contact-heading__top {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #c49a6c;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
}
.contact-heading__title {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #2f2f2f;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
}
.contact-heading__divider {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact-heading__divider span:not(.icon) {
  width: 30px;
  height: 2px;
  background: #d8b08a;
  display: inline-block;
  clip-path: polygon(0 100%, 12% 0, 24% 100%, 36% 0, 48% 100%, 60% 0, 72% 100%, 84% 0, 100% 100%);
}
.contact-heading__divider .icon {
  font-size: 14px;
  color: #c97d45;
  line-height: 1;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #e5e5e5;
  background: #fff;
  font-size: 14px;
  font-family: "Playfair Display", serif;
  outline: none;
  transition: 0.2s ease;
}

.contact-form textarea {
  min-height: 260px;
  resize: none;
  flex-grow: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c49a6c;
  box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.12);
}

.contact-btn {
  margin-top: 10px;
  align-self: flex-start;
  padding: 14px 30px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #c49a6c, #b37c48);
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: "Playfair Display", serif;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.contact-message {
  min-height: 24px;
  margin: 8px 0 0;
  font-size: 14px;
  font-family: "Playfair Display", serif;
  color: #6b6b6b;
}

.contact-message.is-success {
  color: #4f7c4f;
}

.contact-message.is-error {
  color: #b14f4f;
}

.contact-btn.is-loading {
  opacity: 0.8;
  pointer-events: none;
}

/* ================= RIGHT SIDE ================= */
.map-section {
  display: flex;
}

.map-container {
  display: flex;
  flex-direction: column;
}

.map-heading {
  text-align: center;
  margin-bottom: 40px;
}
.map-heading__top {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #c49a6c;
  text-transform: uppercase;
}
.map-heading__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #2f2f2f;
  text-transform: uppercase;
}
.map-heading__divider {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.map-heading__divider span:not(.icon) {
  width: 30px;
  height: 2px;
  display: inline-block;
  background: #d8b08a;
  clip-path: polygon(0 100%, 12% 0, 24% 100%, 36% 0, 48% 100%, 60% 0, 72% 100%, 84% 0, 100% 100%);
}
.map-heading__divider .icon {
  font-size: 14px;
  color: #c97d45;
  line-height: 1;
}

.map-card {
  flex: 1;
  display: flex;
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.map-frame {
  flex: 1;
  position: relative;
  width: 100%;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .contact-map-section {
    padding: 80px 20px;
  }
  .contact-map-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-container,
  .map-container {
    height: auto;
  }
  .contact-form {
    flex: unset;
  }
  .contact-form textarea {
    min-height: 180px;
    flex-grow: 0;
  }
  .map-frame {
    min-height: 400px;
  }
  .contact-heading,
  .map-heading {
    margin-bottom: 32px;
  }
  .contact-heading__title,
  .map-heading__title {
    font-size: 28px;
    letter-spacing: 1.5px;
  }
}
@media (max-width: 640px) {
  .contact-map-section {
    padding: 70px 16px;
  }
  .contact-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-form {
    gap: 16px;
  }
  .contact-heading,
  .map-heading {
    margin-bottom: 28px;
  }
  .contact-heading__top,
  .map-heading__top {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  .contact-heading__title,
  .map-heading__title {
    font-size: 24px;
    letter-spacing: 1px;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
    font-size: 14px;
  }
  .contact-btn {
    width: 100%;
    text-align: center;
  }
  .map-card {
    border-radius: 14px;
  }
  .map-frame {
    min-height: 300px;
  }
}
.menu-board {
  min-height: 100vh;
  padding: 48px 24px 64px;
  background: #ffffff;
  color: #4c1504;
}

.menu-board__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-board__heading {
  text-align: center;
  margin-bottom: 36px;
}

.menu-board__title {
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.95;
  color: #4c1504;
}

.menu-board__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 40px;
  align-items: center;
}

.menu-block {
  min-width: 0;
}

.menu-block--list {
  padding: 10px 12px;
}

.menu-block__category {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #e6c7aa;
}

.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: #4c1504;
}

.menu-list li::after {
  content: "";
  order: 2;
  border-bottom: 1px dotted #4c1504;
  transform: translateY(1px);
}

.menu-list li span:first-child {
  order: 1;
}

.menu-list li span:last-child {
  order: 3;
  color: #4c1504;
  font-weight: 700;
}

.menu-blob {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1.45/1;
  background: #4c1504;
  border-radius: 42% 58% 38% 62%/42% 34% 66% 58%;
  overflow: hidden;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.menu-blob::before {
  content: "";
  position: absolute;
  inset: auto auto -10% -14%;
  width: 46%;
  height: 40%;
  background: #c28b5d;
  border-radius: 40px;
  z-index: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-blob::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 48%, transparent 100%);
  transform: skewX(-18deg);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

.menu-blob--alt::before {
  inset: auto -14% -10% auto;
}

.menu-blob img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.menu-block--image {
  display: flex;
  justify-content: flex-start;
}

.menu-block--image-right {
  display: flex;
  justify-content: flex-end;
}

@media (hover: hover) and (pointer: fine) {
  .menu-blob:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.28);
  }
  .menu-blob:hover::before {
    transform: scale(1.04);
  }
  .menu-blob:hover::after {
    opacity: 1;
    animation: menuBlobShine 0.9s ease;
  }
  .menu-blob:hover img {
    transform: scale(1.06);
    filter: saturate(1.04) contrast(1.03);
  }
}
@keyframes menuBlobShine {
  0% {
    left: -120%;
  }
  100% {
    left: 140%;
  }
}
@media (max-width: 1024px) {
  .menu-board {
    padding: 40px 20px 56px;
  }
  .menu-board__grid {
    gap: 28px 28px;
  }
  .menu-block__category {
    font-size: 1.7rem;
  }
  .menu-list li {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .menu-board__grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .menu-block--image,
  .menu-block--image-right {
    justify-content: center;
  }
  .menu-board__grid > :nth-child(2) {
    order: 1;
  }
  .menu-board__grid > :nth-child(1) {
    order: 2;
  }
  .menu-board__grid > :nth-child(3) {
    order: 3;
  }
  .menu-board__grid > :nth-child(4) {
    order: 4;
  }
  .menu-board__grid > :nth-child(6) {
    order: 5;
  }
  .menu-board__grid > :nth-child(5) {
    order: 6;
  }
  .menu-block--list {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .menu-board__heading {
    margin-bottom: 28px;
  }
  .menu-board__title {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }
  .menu-block__category {
    font-size: 1.6rem;
    margin-bottom: 14px;
    text-align: center;
  }
  .menu-blob,
  .menu-blob::before,
  .menu-blob::after,
  .menu-blob img {
    transition: none;
    animation: none;
  }
}
@media (max-width: 480px) {
  .menu-board {
    padding: 32px 16px 44px;
  }
  .menu-list li {
    font-size: 0.95rem;
    gap: 10px;
  }
  .menu-blob {
    width: 100%;
    max-width: 360px;
  }
}
.featured-drink {
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 24px;
  background-color: #200801;
}

.featured-drink__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.featured-drink__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-drink__image {
  width: min(100%, 520px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(255, 0, 80, 0.15));
}

.featured-drink__content {
  max-width: 430px;
}

.featured-drink__eyebrow {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c49a6c;
  position: relative;
  display: inline-block;
  padding-top: 14px;
}

.featured-drink__eyebrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 130px;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.featured-drink__title {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c49a6c;
}

.featured-drink__text {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .featured-drink {
    min-height: auto;
    padding: 70px 20px;
  }
  .featured-drink__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .featured-drink__content {
    max-width: 100%;
    margin: 0 auto;
  }
  .featured-drink__eyebrow {
    padding-top: 16px;
  }
  .featured-drink__eyebrow::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .featured-drink__image {
    width: min(100%, 420px);
  }
}
@media (max-width: 640px) {
  .featured-drink {
    padding: 56px 16px;
  }
  .featured-drink__title {
    font-size: 1.8rem;
  }
  .featured-drink__text {
    font-size: 0.94rem;
    line-height: 1.7;
  }
  .featured-drink__image {
    width: min(100%, 320px);
  }
}
.site-footer {
  position: relative;
  margin-top: 0;
  background: #2f0f03;
  color: #ffffff;
  overflow: hidden;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
}

.site-footer__social-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 2;
  margin-bottom: -18px;
}

.site-footer__social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #e5c7a5;
  border-radius: 999px;
  box-shadow: 0 10px 24px #e5c7a5;
  margin-top: 20px;
}

.site-footer__social-link {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer__social-link:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.site-footer__main {
  padding: 54px 20px 34px;
}

.site-footer__container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.site-footer__brand {
  display: inline-block;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 800;
  color: #e5c7a5;
}

.site-footer__brand span {
  color: #ffffff;
}

.site-footer__line {
  width: 100%;
  max-width: 620px;
  height: 1px;
  margin: 20px auto 18px;
  background: rgba(255, 255, 255, 0.16);
}

.site-footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.site-footer__nav a:hover {
  color: #e5c7a5;
}

.site-footer__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.site-footer__contact-item:hover {
  color: #e5c7a5;
}

.site-footer__icon {
  font-size: 0.85rem;
  line-height: 1;
}

.site-footer__bottom {
  background: #e5c7a5;
  padding: 12px 16px;
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  color: #2f0f03;
  font-family: "Playfair Display", serif;
  font-size: 0.72rem;
  font-weight: 500;
}

/* TABLET */
@media (max-width: 768px) {
  .site-footer__main {
    padding: 50px 18px 30px;
  }
  .site-footer__brand {
    font-size: 1.7rem;
  }
  .site-footer__nav {
    gap: 16px;
    margin-bottom: 18px;
  }
  .site-footer__contact {
    flex-direction: column;
    gap: 10px;
  }
}
/* MOBILE */
@media (max-width: 480px) {
  .site-footer {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  .site-footer__social-pill {
    gap: 8px;
    padding: 9px 14px;
  }
  .site-footer__social-link {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }
  .site-footer__main {
    padding: 46px 16px 26px;
  }
  .site-footer__brand {
    font-size: 1.5rem;
  }
  .site-footer__nav {
    flex-direction: column;
    gap: 10px;
  }
  .site-footer__nav a {
    font-size: 0.7rem;
  }
  .site-footer__contact-item {
    font-size: 0.78rem;
  }
  .site-footer__bottom p {
    font-size: 0.68rem;
    line-height: 1.5;
  }
}
.nav-toggle {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 1200;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 10, 8, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}
.nav-toggle:hover {
  transform: translateY(-2px);
  background: rgba(35, 18, 12, 0.92);
  box-shadow: none;
}
.nav-toggle:focus-visible {
  outline: 2px solid rgba(196, 154, 108, 0.9);
  outline-offset: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #f3dfc9;
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.3s ease, background 0.3s ease;
}
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.side-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.side-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  width: min(380px, 88vw);
  height: 100vh;
  background: linear-gradient(180deg, rgba(18, 8, 6, 0.97) 0%, rgba(28, 12, 8, 0.985) 48%, rgba(35, 16, 10, 0.985) 100%);
  box-shadow: none;
  transform: translateX(-100%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.side-menu::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 85%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(196, 154, 108, 0.05) 30%, rgba(241, 223, 202, 0.28) 48%, rgba(196, 154, 108, 0.16) 58%, transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
}
.side-menu::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(196, 154, 108, 0.12), transparent 34%), radial-gradient(circle at bottom left, rgba(241, 223, 202, 0.06), transparent 36%);
  pointer-events: none;
  opacity: 0.9;
}
.side-menu.is-active {
  transform: translateX(0);
}
.side-menu.is-active::before {
  opacity: 1;
  animation: menuShine 1.15s ease forwards;
}
.side-menu.is-active .side-menu__eyebrow {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.side-menu.is-active .side-menu__nav a {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
  filter: blur(0);
}
.side-menu.is-active .side-menu__nav a:nth-child(1) {
  transition-delay: 0.38s;
}
.side-menu.is-active .side-menu__nav a:nth-child(2) {
  transition-delay: 0.58s;
}
.side-menu.is-active .side-menu__nav a:nth-child(3) {
  transition-delay: 0.78s;
}
.side-menu.is-active .side-menu__nav a:nth-child(4) {
  transition-delay: 0.98s;
}
.side-menu.is-active .side-menu__nav a:nth-child(5) {
  transition-delay: 1.18s;
}
.side-menu.is-active .side-menu__nav a:nth-child(6) {
  transition-delay: 1.38s;
}
.side-menu.is-active .side-menu__nav a:nth-child(7) {
  transition-delay: 1.58s;
}

.side-menu__inner {
  height: 100%;
  padding: 110px 34px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.side-menu__eyebrow {
  margin: 0 0 22px;
  font-family: "Playfair Display", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c49a6c;
  opacity: 0;
  transform: translateX(-18px);
  filter: blur(6px);
  transition: opacity 0.55s ease 0.22s, transform 0.55s ease 0.22s, filter 0.55s ease 0.22s;
}

.side-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side-menu__nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
  color: #f6eee7;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 18px 12px 0;
  border-radius: 999px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-42px) translateY(14px) scale(0.985);
  filter: blur(10px);
  transition: color 0.35s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.85s ease, filter 0.85s ease, background 0.35s ease;
}
.side-menu__nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(196, 154, 108, 0) 0%, rgba(196, 154, 108, 0.08) 35%, rgba(241, 223, 202, 0.16) 50%, rgba(196, 154, 108, 0.08) 65%, rgba(196, 154, 108, 0) 100%);
  transform: translateX(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.side-menu__nav a::after {
  display: none;
  content: none;
}

html {
  scroll-behavior: smooth;
}

body.menu-open {
  overflow: hidden;
}

@keyframes menuShine {
  0% {
    left: -120%;
  }
  100% {
    left: 125%;
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 1025px) {
  .side-menu__nav a:hover {
    color: #c49a6c;
    transform: translateX(10px);
    filter: blur(0);
  }
  .side-menu__nav a:hover::before {
    transform: translateX(0);
    opacity: 1;
  }
  .side-menu__nav a:focus-visible {
    color: #c49a6c;
    outline: none;
  }
  .side-menu__nav a:focus-visible::before {
    transform: translateX(0);
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .side-menu__nav a:hover, .side-menu__nav a:focus-visible, .side-menu__nav a:active {
    color: #f6eee7;
    transform: translateX(0) translateY(0) scale(1);
    filter: blur(0);
    outline: none;
  }
  .side-menu__nav a:hover::before, .side-menu__nav a:focus-visible::before, .side-menu__nav a:active::before {
    transform: translateX(-110%);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .nav-toggle {
    top: 18px;
    left: 18px;
    width: 52px;
    height: 52px;
  }
  .nav-toggle span {
    width: 22px;
  }
  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .side-menu {
    width: min(320px, 88vw);
  }
  .side-menu__inner {
    padding: 94px 24px 32px;
  }
  .side-menu__nav a {
    font-size: clamp(1rem, 4vw, 1.25rem);
    padding: 12px 8px 12px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav-toggle,
  .nav-toggle span,
  .side-overlay,
  .side-menu,
  .side-menu::before,
  .side-menu__eyebrow,
  .side-menu__nav a,
  .side-menu__nav a::before,
  .side-menu__nav a::after {
    transition: none !important;
    animation: none !important;
  }
}
:root {
  --bg-1: #180a07;
  --bg-2: #1c0e08;
  --bg-3: #241009;
  --text-main: #f6eee7;
  --text-soft: #d7c2ae;
  --text-muted: #a78b75;
  --accent-1: #fff8f1;
  --accent-2: #e8d6c3;
  --accent-3: #3e3329;
  --accent-4: #b16f3d;
  --accent-5: #6e4121;
  --gold-soft: rgba(255, 214, 160, 0.7);
  --gold-glow: rgba(255, 177, 73, 0.32);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text-main);
  font-family: "Playfair Display", serif;
  background: radial-gradient(circle at 20% 18%, rgba(88, 50, 24, 0.16), transparent 24%), radial-gradient(circle at 72% 38%, rgba(173, 112, 58, 0.12), transparent 26%), radial-gradient(circle at 78% 72%, rgba(56, 31, 16, 0.34), transparent 30%), radial-gradient(circle at 50% 50%, rgba(255, 224, 186, 0.025), transparent 42%), linear-gradient(135deg, #080403 0%, #120906 26%, #1a0e08 58%, #24120b 100%);
}

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

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: clamp(16px, 2vw, 28px);
  overflow: hidden;
  isolation: isolate;
}
.hero__page-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  background: url("../assets/coffebeans.jpg") center center/cover no-repeat;
  opacity: 0.9;
  filter: blur(6px) brightness(0.92);
  transform: scale(1.06);
  transform-origin: center center;
}
.hero__page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.12) 55%, rgba(0, 0, 0, 0.28) 100%);
}
.hero__page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 4, 3, 0.12) 0%, rgba(8, 4, 3, 0.04) 24%, rgba(8, 4, 3, 0.04) 76%, rgba(8, 4, 3, 0.16) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  width: min(100%, 1400px);
  padding-top: 0.5rem;
  text-align: center;
}
.hero__eyebrow {
  position: relative;
  margin: 0 0 1.2rem;
  padding-inline: 1.25rem;
  color: var(--text-muted);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(36px, 5vw, 88px);
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(245, 196, 138, 0.68));
}
.hero__eyebrow::before {
  right: 100%;
  margin-right: 0.8rem;
}
.hero__eyebrow::after {
  left: 100%;
  margin-left: 0.8rem;
  transform: translateY(-50%) scaleX(-1);
}
.hero__stage {
  position: relative;
  display: grid;
  justify-items: center;
  width: 100%;
  min-height: clamp(420px, 62vh, 760px);
  isolation: isolate;
}
.hero__title {
  position: relative;
  z-index: 4;
  max-width: none;
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 7rem;
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: normal;
  word-break: break-word;
  pointer-events: none;
  background: linear-gradient(180deg, #fff8f1 0%, #faead7 16%, #f2c487 38%, #d48e4c 62%, #9f5f2f 82%, #5d3419 100%);
  background-size: 100% 180%;
  background-position: 50% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255, 215, 170, 0.16), 0 0 26px rgba(228, 155, 72, 0.14), 0 8px 24px rgba(0, 0, 0, 0.18);
}
.hero__title::before {
  content: "";
  position: absolute;
  top: 0.33em;
  left: 0.14em;
  z-index: 6;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255, 250, 243) 0%, rgba(255, 231, 188, 0.95) 28%, rgba(255, 177, 73, 0.55) 62%, rgba(255, 177, 73, 0) 80%);
  box-shadow: 0 0 10px rgba(255, 214, 156, 0.9), 0 0 28px rgba(255, 166, 64, 0.5);
  animation: titleSparkPulse 2.6s ease-in-out infinite;
}
.hero__title-line {
  position: relative;
  z-index: 2;
  display: block;
}
.hero__title-spark {
  position: absolute;
  top: 0.33em;
  left: 0.14em;
  z-index: 6;
  width: 28px;
  height: 28px;
  opacity: 0.9;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.hero__title-spark::before, .hero__title-spark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, rgba(255, 239, 214, 0), rgba(255, 225, 170, 0.98), rgba(255, 239, 214, 0));
  box-shadow: 0 0 16px rgba(255, 193, 104, 0.45);
}
.hero__title-spark::before {
  width: 2px;
  height: 100%;
}
.hero__title-spark::after {
  width: 100%;
  height: 2px;
}
.hero__visual {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: min(100%, 24rem);
}
.hero__glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(180px, 34vw, 400px);
  height: clamp(180px, 34vw, 400px);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(clamp(28px, 4vw, 60px));
  background: radial-gradient(circle, rgba(214, 151, 91, 0.42) 0%, rgba(154, 95, 49, 0.23) 42%, transparent 76%);
  animation: glowPulse 6s ease-in-out infinite;
}
.hero__shadow {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  z-index: 1;
  width: 210px;
  height: 54px;
  border-radius: 999px;
  transform: translateX(-50%);
  filter: blur(14px);
  background: radial-gradient(ellipse at center, rgba(18, 10, 6, 0.72) 0%, rgba(214, 200, 193, 0.25) 42%, rgba(0, 0, 0, 0.36) 72%, transparent 100%);
  animation: shadowFloat 6s ease-in-out infinite;
}
.hero__image {
  position: relative;
  z-index: 3;
  width: min(34vw, 27rem);
  transform: rotate(-8deg);
  transform-origin: center;
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.28)) drop-shadow(0 0 18px rgba(255, 177, 73, 0.12)) drop-shadow(0 10px 18px rgba(199, 147, 95, 0.08));
  animation: floatDrinkDesktop 6s ease-in-out infinite;
}
.hero__info {
  width: 100%;
  justify-items: center;
}
.hero__text {
  position: relative;
  margin: 0;
  color: var(--text-soft);
  font-size: 2rem;
  font-style: italic;
  line-height: 1.35;
  background: transparent;
}
.hero__text::before, .hero__text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(28px, 6vw, 72px);
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 205, 142, 0.9));
}
.hero__text::before {
  right: 100%;
  margin-right: 0.9rem;
}
.hero__text::after {
  left: 100%;
  margin-left: 0.9rem;
  transform: translateY(-50%) scaleX(-1);
}
.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
}
.hero__location-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #e8d6c3;
  filter: drop-shadow(0 0 8px rgba(255, 177, 73, 0.18));
}
.hero__location-icon svg {
  width: 100%;
  height: 100%;
}
.hero__location-text {
  color: var(--text-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.hero__particle {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255, 245, 225) 0%, rgba(255, 197, 110, 0.9) 45%, rgba(255, 170, 68, 0.25) 72%, rgba(255, 170, 68, 0) 100%);
  box-shadow: 0 0 8px rgba(255, 202, 128, 0.7), 0 0 18px rgba(255, 166, 64, 0.28);
  animation: particleFloat linear infinite;
}

/* =========================
   LIQUID TITLE
========================= */
.liquid-title {
  position: relative;
  display: inline-block;
  padding-bottom: 28px;
  overflow: visible;
  isolation: isolate;
}
.liquid-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.95;
  pointer-events: none;
  color: transparent;
  background: linear-gradient(180deg, #fff8f1 0%, #faead7 16%, #f2c487 38%, #d48e4c 62%, #9f5f2f 82%, #5d3419 100%);
  background-size: 100% 180%;
  background-position: 50% 0%;
  filter: url(#coffee-distort);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: coffeeSurface 6s ease-in-out infinite, coffeeShine 9s linear infinite;
}

/* =========================
   STEAM
========================= */
.hero__steam {
  position: absolute;
  bottom: 42%;
  left: 50%;
  z-index: 2;
  width: min(260px, 42vw);
  height: min(320px, 50vw);
  overflow: visible;
  pointer-events: none;
  transform: translateX(-50%);
}

.hero__steam-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 72px;
  height: 180px;
  border-radius: 999px;
  opacity: 0;
  transform: translateX(-50%);
  filter: blur(14px);
  mix-blend-mode: screen;
  background: radial-gradient(ellipse at center, rgba(255, 248, 241, 0.18) 0%, rgba(240, 220, 198, 0.12) 38%, rgba(214, 190, 164, 0.06) 58%, rgba(255, 255, 255, 0) 78%);
}
.hero__steam-line::before, .hero__steam-line::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
}
.hero__steam-line::before {
  opacity: 0.7;
  transform: translateX(-10px) scale(0.82);
  filter: blur(18px);
}
.hero__steam-line::after {
  opacity: 0.42;
  transform: translateX(12px) scale(0.68);
  filter: blur(22px);
}
.hero__steam-line--1 {
  margin-left: -56px;
  animation: steamRise1 6.2s ease-in-out infinite;
}
.hero__steam-line--2 {
  margin-left: -18px;
  animation: steamRise2 7s ease-in-out 1.1s infinite;
}
.hero__steam-line--3 {
  margin-left: 20px;
  animation: steamRise3 6.6s ease-in-out 0.6s infinite;
}
.hero__steam-line--4 {
  margin-left: 58px;
  animation: steamRise4 7.4s ease-in-out 1.8s infinite;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes floatDrinkDesktop {
  0%, 100% {
    transform: rotate(-8deg) translateY(0);
  }
  50% {
    transform: rotate(-8deg) translateY(-18px);
  }
}
@keyframes shadowFloat {
  0%, 100% {
    opacity: 0.32;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    opacity: 0.18;
    transform: translateX(-50%) scaleX(0.86);
  }
}
@keyframes glowPulse {
  0%, 100% {
    opacity: 0.94;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
  }
}
@keyframes coffeeSurface {
  0%, 100% {
    transform: translateY(0) skewX(0deg);
  }
  25% {
    transform: translateY(1px) skewX(-0.4deg);
  }
  50% {
    transform: translateY(3px) skewX(0.5deg);
  }
  75% {
    transform: translateY(1px) skewX(-0.3deg);
  }
}
@keyframes coffeeShine {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}
@keyframes titleSparkPulse {
  0%, 100% {
    opacity: 0.9;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}
@keyframes buttonGlowPulse {
  0%, 100% {
    opacity: 0.68;
    transform: translateX(-50%) scaleX(0.9);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.04);
  }
}
@keyframes steamRise1 {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px) scale(0.82) rotate(-8deg);
  }
  20% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.18;
    transform: translateX(-50%) translateY(-40px) scale(1) rotate(-2deg);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-120px) scale(1.18) rotate(8deg);
  }
}
@keyframes steamRise2 {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(8px) scale(0.78) rotate(6deg);
  }
  22% {
    opacity: 0.24;
  }
  52% {
    opacity: 0.16;
    transform: translateX(-50%) translateY(-48px) scale(1) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-132px) scale(1.22) rotate(-10deg);
  }
}
@keyframes steamRise3 {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px) scale(0.84) rotate(-5deg);
  }
  18% {
    opacity: 0.28;
  }
  48% {
    opacity: 0.14;
    transform: translateX(-50%) translateY(-42px) scale(1.02) rotate(3deg);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-126px) scale(1.2) rotate(11deg);
  }
}
@keyframes steamRise4 {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px) scale(0.8) rotate(7deg);
  }
  20% {
    opacity: 0.22;
  }
  55% {
    opacity: 0.12;
    transform: translateX(-50%) translateY(-46px) scale(1.04) rotate(-2deg);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-138px) scale(1.24) rotate(-12deg);
  }
}
@keyframes particleFloat {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-200px);
    opacity: 0;
  }
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1600px) {
  .hero {
    padding: 0;
  }
  .hero__title {
    font-size: 5rem;
  }
  .hero__text {
    font-size: 1.7rem;
  }
  .hero__image {
    width: min(28vw, 21rem);
  }
}
@media (max-width: 1024px) {
  .hero {
    padding: 3rem 0;
    display: block;
  }
  .hero__page-bg {
    background-position: center 52%;
    background-size: cover;
    filter: blur(5px) brightness(0.9);
    transform: scale(1.08);
  }
  .hero__stage {
    min-height: 520px;
  }
  .hero__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .hero__text {
    width: 81%;
    font-size: 2rem;
  }
  .hero__text::before, .hero__text::after {
    width: 34px;
  }
  .hero__title {
    width: 70%;
    padding-bottom: 1.4rem;
    font-size: 72px;
    line-height: 1;
  }
  .hero__title::before {
    width: 16px;
    height: 16px;
  }
  .hero__eyebrow {
    margin: 0;
    padding-bottom: 2rem;
    font-size: 1.2rem;
  }
  .hero__status-text {
    padding: 0;
  }
  .hero__image {
    width: 500px;
    max-width: 45vw;
  }
  .hero__steam {
    bottom: 40%;
    width: min(220px, 44vw);
    height: min(250px, 44vw);
  }
  .hero__steam-line {
    width: 56px;
    height: 140px;
    filter: blur(12px);
  }
}
@media (max-width: 640px) {
  .liquid-title {
    padding-bottom: 18px;
  }
  .hero {
    padding: 3rem 0;
    display: block;
  }
  .hero__page-bg {
    background-position: center center;
    background-size: cover;
    filter: blur(4px) brightness(0.88);
    transform: scale(1.1);
    opacity: 0.86;
  }
  .hero__stage {
    min-height: 430px;
  }
  .hero__text {
    width: 81%;
    font-size: 1rem;
  }
  .hero__text::before, .hero__text::after {
    display: none;
  }
  .hero__title {
    width: 90%;
    padding-bottom: 5px;
    font-size: 55px;
    line-height: 1;
  }
  .hero__title::before {
    top: 0.34em;
    left: 0.16em;
    width: 12px;
    height: 12px;
  }
  .hero__title-spark {
    top: 0.34em;
    left: 0.16em;
    width: 20px;
    height: 20px;
  }
  .hero__shadow {
    bottom: 56px;
    width: 149px;
    height: 19px;
  }
  .hero__eyebrow {
    padding-bottom: 1rem;
    font-size: 0.5rem;
  }
  .hero__location {
    margin-top: 0.9rem;
    gap: 0.45rem;
  }
  .hero__location-icon {
    width: 16px;
    height: 16px;
  }
  .hero__location-text {
    font-size: 0.9rem;
    letter-spacing: 0.06em;
  }
  .hero__image {
    width: 28rem;
    max-width: 75vw;
  }
  .hero__steam {
    bottom: 43%;
    width: 150px;
    height: 180px;
  }
  .hero__steam-line {
    width: 36px;
    height: 96px;
    filter: blur(10px);
  }
  .hero__steam-line--1 {
    margin-left: -30px;
  }
  .hero__steam-line--2 {
    margin-left: -10px;
  }
  .hero__steam-line--3 {
    margin-left: 10px;
  }
  .hero__steam-line--4 {
    margin-left: 30px;
  }
}
@media (max-width: 360px) {
  .hero__title {
    font-size: 45px;
  }
  .hero__image {
    max-width: 56vw;
  }
  .hero__eyebrow {
    padding-bottom: 1.5rem;
  }
}

/*# sourceMappingURL=style.css.map */
