:root {
  --bg: #f7efe6;
  --bg-alt: #efe1d1;
  --card: #fff7ef;
  --ink: #3a2a1d;
  --muted: #6b4f3a;
  --accent: #c9753d;
  --accent-dark: #9b4c22;
  --cream: #f9e8d6;
  --shadow: 0 18px 40px rgba(60, 36, 18, 0.15);
}

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

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fdf6ee 0%, var(--bg) 60%, #efddc8 100%);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 239, 230, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58, 42, 29, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 6vw;
}

.logo {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

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

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  display: block;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
  padding: 4.5rem 6vw 3rem;
}

.hero-content h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin-bottom: 0.6rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 30rem;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border: 1px solid var(--accent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 20px rgba(201, 117, 61, 0.25);
}

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

.btn.ghost {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: none;
}

.hero-visual {
  position: relative;
  height: 360px;
  background: linear-gradient(140deg, #f2d1b2 0%, #f7efe6 50%, #e7c6a9 100%);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cup {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  height: 120px;
  background: linear-gradient(180deg, #fff6ee 0%, #f2dcc3 100%);
  border-radius: 0 0 28px 28px;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.6);
}

.cup::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  width: 100%;
  height: 36px;
  background: linear-gradient(180deg, #c9753d 0%, #b4602c 100%);
  border-radius: 24px 24px 0 0;
}

.cup::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 20px;
  width: 50px;
  height: 70px;
  border: 8px solid #f2dcc3;
  border-left: none;
  border-radius: 0 40px 40px 0;
}

.steam {
  position: absolute;
  width: 40px;
  height: 120px;
  border-radius: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.7) transparent transparent transparent;
  animation: float 5s ease-in-out infinite;
}

.steam.s1 {
  left: 35%;
  top: 40px;
}

.steam.s2 {
  left: 50%;
  top: 20px;
  animation-delay: 0.6s;
}

.steam.s3 {
  left: 62%;
  top: 50px;
  animation-delay: 1.2s;
}

.spice {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #c9753d;
  opacity: 0.7;
}

.spice-1 {
  top: 70%;
  left: 18%;
}

.spice-2 {
  top: 20%;
  right: 18%;
}

.spice-3 {
  bottom: 18%;
  right: 32%;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-12px);
    opacity: 0.9;
  }
}

.section {
  padding: 3.5rem 6vw;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.about {
  background: var(--bg-alt);
}

.about-grid {
  display: grid;
  gap: 1.5rem;
  font-size: 1.05rem;
  color: var(--muted);
}

.menu {
  background: linear-gradient(180deg, #f8efe4 0%, #f3e1cf 100%);
}

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

.menu-card {
  background: var(--card);
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(60, 36, 18, 0.1);
}

.menu-card h3 {
  font-family: "Fraunces", serif;
  margin-bottom: 0.5rem;
}

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

.map-placeholder {
  height: 240px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(201, 117, 61, 0.4), rgba(239, 225, 209, 0.9)),
    repeating-linear-gradient(90deg, rgba(58, 42, 29, 0.08) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(0deg, rgba(58, 42, 29, 0.08) 0 1px, transparent 1px 30px);
  position: relative;
}

.map-placeholder::after {
  content: "Map preview";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 1px;
}

.note {
  margin-top: 0.8rem;
  color: var(--muted);
}

.hours {
  background: var(--bg-alt);
}

.hours-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.hours-grid h3 {
  font-family: "Fraunces", serif;
}

.contact {
  padding-bottom: 5rem;
}

.contact-card {
  background: var(--card);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 2.5rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero {
    padding-top: 3.5rem;
  }

  .hero-visual {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 6vw;
    background: #fff7ef;
    border-radius: 16px;
    padding: 1rem 1.2rem;
    flex-direction: column;
    gap: 0.8rem;
    box-shadow: 0 14px 30px rgba(60, 36, 18, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.2s ease;
  }

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

@media (max-width: 600px) {
  .hero {
    padding: 3rem 5vw 2.5rem;
  }

  .section {
    padding: 3rem 5vw;
  }

  .contact-card {
    padding: 2rem;
  }
}
