* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Questrial', Helvetica, Arial, Lucida, sans-serif;
  background: #f7f7f7;
  color: #111;
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  padding: 80px 0;
}

h1,
h2,
h3 {
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  font-size: 5rem;
  line-height: 0.95;
}

h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

p {
  font-size: 1.1rem;
  color: #333;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  border: 2px solid #111;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn:hover {
  background: #111;
  color: #fff;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  background:
    radial-gradient(circle at 58% 42%, rgba(255, 255, 255, 0.92) 0 22%, rgba(247, 240, 232, 0.45) 44%, transparent 68%),
    linear-gradient(115deg, #f7f1e9 0%, #fffaf5 42%, #efe6dc 100%);
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(560px, 1.38fr);
  align-items: center;
  gap: clamp(44px, 5.5vw, 104px);
  padding: clamp(48px, 5.3vw, 86px) clamp(48px, 4.8vw, 96px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 6%;
  z-index: 0;
  width: min(50vw, 760px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 25px solid #111;
  box-sizing: border-box;
  background-image: var(--drink-img);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.slide::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: 6%;
  width: min(34vw, 520px);
  aspect-ratio: 1.7;
  border-radius: 999px;
  background: rgba(78, 116, 42, 0.14);
  filter: blur(30px);
  transform: rotate(-8deg);
}

.hero-content,
.drink-info {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 440px;
  align-self: center;
}

.logo {
  display: block;
  width: clamp(180px, 17vw, 280px);
  height: auto;
  margin-bottom: clamp(44px, 5.2vw, 72px);
}

.hero h1 {
  max-width: 6.8ch;
  font-size: clamp(3.9rem, 6.2vw, 7rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero p {
  max-width: 390px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 3px solid #111;
  font-size: clamp(1.1rem, 1.45vw, 1.45rem);
  font-weight: 900;
  color: #111;
}

.hero .btn {
  display: none;
}

.drink-info {
  align-self: start;
  justify-self: end;
  max-width: 320px;
  margin-top: clamp(22px, 5vw, 72px);
  text-align: center;
}

.drink-info h2 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 1.9vw, 2.15rem);
  line-height: 0.95;
  letter-spacing: 0;
  color: #111;
}

.drink-info h2 span {
  display: block;
}

.drink-info .drink-script {
  margin-bottom: 8px;
  font-family: inherit;
  font-size: clamp(1.85rem, 3vw, 3.4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #111;
}

.drink-info p {
  display: none;
}

.slider-dots {
  position: absolute;
  bottom: clamp(44px, 6vw, 78px);
  left: clamp(48px, 4.8vw, 96px);
  z-index: 5;
  display: none;
  gap: 10px;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: #bbb;
  cursor: pointer;
}

.slider-dots button.active {
  background: #111;
}

.slider-count {
  position: absolute;
  left: clamp(48px, 4.8vw, 96px);
  bottom: clamp(42px, 5vw, 72px);
  z-index: 5;
  font-size: clamp(1.05rem, 1.3vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #111;
}

.about {
  background: #111;
  color: #fff;
}

.about p {
  color: #ddd;
  max-width: 700px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-card {
  border: 1px solid #444;
  padding: 40px;
  border-radius: 20px;
}

.menu {
  background: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.menu-card {
  background: #f5f5f5;
  padding: 35px;
  border: 1px solid #ddd;
  border-radius: 20px;
}

.menu-card h3 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.menu-price {
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 900;
}

ul {
  list-style: none;
}

li {
  padding: 6px 0;
  font-size: 1.05rem;
}

.menu-note {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #555;
}

.social {
  background: #111;
  color: #fff;
  text-align: center;
}

.social p {
  color: #ddd;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.about-card a,
.social-links a {
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
}

.about-card a:hover,
.social-links a:hover {
  background: #fff;
  color: #111;
}

.hours {
  margin-top: 30px;
  font-size: 1.1rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  h1 {
    font-size: 3.5rem;
  }

  .about-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .slide {
    grid-template-columns: 1fr;
    align-content: start;
    padding: 28px 7% 96px;
  }

  .slide::after {
    /* centered circular frame below hero text on mobile */
    content: "";
    display: block;
    position: static;
    margin: 18px auto 0;
    z-index: 0;
    width: min(90vw, 760px, 60vh);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 25px solid #111;
    box-sizing: border-box;
    background-image: var(--drink-img);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }

  .slide::before {
    right: -30%;
    bottom: 8%;
    width: 80vw;
  }

  .hero h1 {
    max-width: 7ch;
    line-height: .8;
    font-size: clamp(0.5rem, 12vw, 2.5rem);
  }

  .hero p {
    max-width: 340px;
    font-size: 1.05rem;
  }

  .logo {
    width: min(230px, 70vw);
    margin-bottom: 36px;
  }

  .drink-info {
    justify-self: end;
    align-self: start;
    max-width: 210px;
    margin-top: 0;
  }

  .drink-info .drink-script {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .drink-info h2 {
    font-size: 1.1rem;
  }

  .slider-count {
    left: 7%;
    bottom: 34px;
  }
}
