* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #3f2a1d;
  background: #fff7ec;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 7%;
  background: rgba(255, 247, 236, 0.94);
  border-bottom: 1px solid #ead8c2;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 1.1rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  color: #6f4a31;
}

.nav-links a:hover {
  color: #2c1a10;
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 64px 7%;
  background:
    radial-gradient(circle at 80% 20%, #f2d6b3 0, transparent 32%),
    linear-gradient(135deg, #fff7ec 0%, #f7e0c4 100%);
}

.hero-text h1 {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 1;
  color: #2c1a10;
  letter-spacing: 0;
}

.hero-text p {
  max-width: 500px;
  margin: 18px 0 28px;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #6f4a31;
}

.eyebrow {
  margin: 0 0 12px;
  color: #9a653f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-text .eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
}

.primary-button,
.whatsapp-button,
.menu-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.primary-button,
.menu-card button {
  color: #fffaf2;
  background: #6f3f22;
}

.primary-button:hover,
.menu-card button:hover,
.whatsapp-button:hover {
  transform: translateY(-2px);
}

.menu-card button:hover {
  background: #4f2b17;
}

.coffee-visual {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cup {
  position: relative;
  z-index: 2;
  width: min(70vw, 280px);
  height: 190px;
  background: #fffaf2;
  border: 10px solid #5b331e;
  border-radius: 0 0 72px 72px;
  box-shadow: 0 22px 45px rgba(79, 43, 23, 0.2);
}

.cup::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -70px;
  width: 74px;
  height: 84px;
  border: 12px solid #5b331e;
  border-left: 0;
  border-radius: 0 42px 42px 0;
}

.coffee {
  width: 100%;
  height: 44px;
  background: #7a4326;
  border-radius: 0 0 50% 50%;
}

.saucer {
  position: absolute;
  z-index: 1;
  bottom: 48px;
  width: min(78vw, 340px);
  height: 28px;
  background: #d7b184;
  border-radius: 50%;
}

.steam {
  position: absolute;
  z-index: 3;
  top: 38px;
  width: 18px;
  height: 88px;
  border-radius: 50%;
  border-left: 5px solid #b98a63;
  opacity: 0.8;
}

.steam-one {
  left: 40%;
}

.steam-two {
  left: 50%;
  top: 20px;
}

.steam-three {
  left: 60%;
}

.section {
  padding: 70px 7%;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: #2c1a10;
  letter-spacing: 0;
}

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

.menu-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  background: #fffdf8;
  border: 1px solid #ead8c2;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(63, 42, 29, 0.08);
}

.menu-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #2c1a10;
}

.menu-card p {
  margin: 0;
  line-height: 1.5;
  color: #75543d;
}

.menu-card strong {
  display: block;
  font-size: 1.25rem;
  color: #6f3f22;
}

.cart-section {
  background: #f6dfc3;
}

.cart-box {
  max-width: 720px;
  padding: 24px;
  background: #fffdf8;
  border: 1px solid #e1c6a4;
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(63, 42, 29, 0.1);
}

.cart-items {
  min-height: 60px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cart-items li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #ead8c2;
  color: #4c3424;
}

.empty-cart {
  color: #8a6b54;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 1.2rem;
}

.whatsapp-button {
  width: 100%;
  color: #fff;
  background: #1f8f4d;
}

.whatsapp-button:hover {
  background: #176f3b;
}

.footer {
  padding: 24px 7%;
  text-align: center;
  color: #75543d;
  background: #fff7ec;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 600px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 5%;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-text p {
    font-size: 1.05rem;
  }

  .coffee-visual {
    min-height: 270px;
  }

  .cup {
    height: 160px;
  }

  .cup::after {
    right: -52px;
    width: 56px;
    height: 68px;
  }

  .saucer {
    bottom: 38px;
  }

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

  .menu-card {
    min-height: 220px;
  }

  .cart-box {
    padding: 18px;
  }
}
