:root {
  --bg: #f7f1e6;
  --cream: #fdf8f0;
  --brown: #4c2b1c;
  --amber: #c17f3a;
  --rust: #8f4f2b;
  --sage: #8b7b63;
  --dark: #2a1a13;
  --shadow: 0 18px 45px rgba(46, 28, 17, 0.15);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

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

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Nunito", sans-serif;
  background: radial-gradient(circle at top left, #fff7e6 0%, #f6efe3 45%, #efe4d5 100%);
  color: var(--dark);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(253, 248, 240, 0.96);
  border-bottom: 1px solid rgba(76, 43, 28, 0.08);
  backdrop-filter: blur(6px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--brown);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--brown);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
  padding: 90px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 2.8vw, 3.4rem);
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--rust);
  font-weight: 700;
  margin-bottom: 12px;
}

.lead {
  font-size: 1.05rem;
  color: var(--sage);
  margin-bottom: 24px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.primary {
  background: var(--brown);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.btn.ghost {
  border: 1px solid rgba(76, 43, 28, 0.3);
  color: var(--brown);
  background: transparent;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.hero-card {
  background: linear-gradient(160deg, rgba(193, 127, 58, 0.25), rgba(143, 79, 43, 0.08));
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow);
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-card .steam {
  position: absolute;
  top: 24px;
  right: 20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(4px);
  animation: float 5s ease-in-out infinite;
}

.hero-card .cup {
  width: 160px;
  height: 160px;
  border-radius: 50% 50% 45% 45%;
  background: radial-gradient(circle at top, #fff4e0 0%, #d9a36b 55%, #8f4f2b 100%);
  border: 8px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.15);
}

.hero-card .spice {
  position: absolute;
  bottom: 18px;
  left: 24px;
  width: 90px;
  height: 90px;
  border-radius: 30% 70% 40% 60%;
  background: rgba(143, 79, 43, 0.3);
  filter: blur(6px);
}

.hero-card .card-note {
  position: absolute;
  bottom: 20px;
  right: 22px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown);
}

.section {
  padding: 80px 0;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  margin-bottom: 16px;
  color: var(--brown);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.about-panel {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.chai-notes {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--sage);
  font-weight: 600;
}

.section-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.menu-card {
  background: var(--cream);
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  position: relative;
}

.menu-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 8px;
  color: var(--brown);
}

.menu-card p {
  color: var(--sage);
}

.menu-card .tag {
  display: inline-flex;
  margin-top: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(193, 127, 58, 0.2);
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 700;
}

.location {
  background: linear-gradient(120deg, rgba(193, 127, 58, 0.1), rgba(79, 48, 33, 0.05));
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.location-card {
  background: var(--brown);
  color: var(--cream);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.location-card .btn.ghost {
  border-color: rgba(253, 248, 240, 0.6);
  color: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
}

.contact-card {
  background: var(--cream);
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 30px 0 40px;
  background: #f1e5d3;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
}

.back-top {
  font-weight: 700;
  color: var(--brown);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 5vw;
    background: var(--cream);
    flex-direction: column;
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transform: translateY(-15px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-card {
    min-height: 240px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .nav-links {
    width: 90vw;
    right: 5vw;
  }

  .hero-card {
    padding: 28px;
  }

  .hero-card .card-note {
    position: static;
    margin-top: 18px;
  }
}
