:root {
  --cream: #f7f1e6;
  --sand: #e8dcc5;
  --clay: #caa67a;
  --rust: #9b5a3c;
  --coffee: #4b2f24;
  --leaf: #6b7d57;
  --ink: #2c1d16;
  --white: #fffaf3;
  --shadow: 0 20px 60px rgba(60, 33, 22, 0.15);
  --radius: 20px;
  --radius-sm: 14px;
  --max-width: 1100px;
}

* {
  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 left, #f1e5d4 0%, var(--cream) 38%, #f4efe6 100%);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  background: rgba(247, 241, 230, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(155, 90, 60, 0.1);
  z-index: 10;
}

.nav-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  color: var(--coffee);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-menu a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
  border-color: var(--rust);
}

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

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

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  align-items: center;
}

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

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.05rem;
  max-width: 36rem;
  margin-bottom: 1.8rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--rust);
  color: var(--white);
  box-shadow: var(--shadow);
}

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

.btn.ghost {
  border: 1px solid rgba(75, 47, 36, 0.4);
  color: var(--coffee);
}

.hero-visual {
  position: relative;
  background: linear-gradient(145deg, #fdf9f1 0%, #ead9c1 100%);
  border-radius: var(--radius);
  padding: 2.5rem;
  min-height: 340px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cup {
  width: 160px;
  height: 120px;
  border-radius: 0 0 24px 24px;
  border: 6px solid var(--coffee);
  border-top: none;
  margin: 2.5rem auto 0;
  position: relative;
}

.cup::after {
  content: "";
  position: absolute;
  right: -34px;
  top: 20px;
  width: 46px;
  height: 64px;
  border: 6px solid var(--coffee);
  border-left: none;
  border-radius: 0 30px 30px 0;
}

.steam {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
  transform: translateX(-50%);
  animation: float 6s ease-in-out infinite;
}

.spice-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  text-align: center;
  font-weight: 600;
  color: var(--coffee);
}

.spice-card span {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--leaf);
  margin-top: 0.4rem;
}

section {
  padding: 3.5rem 1.5rem;
}

.section-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.about .section-shell,
.location .section-shell {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.section-title h2 {
  margin-bottom: 1rem;
}

h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--coffee);
}

h3 {
  font-size: 1.1rem;
  color: var(--coffee);
  margin-bottom: 0.4rem;
}

.about-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-card ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.about-card li::before {
  content: "•";
  color: var(--rust);
  margin-right: 0.5rem;
}

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

.menu-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.hours {
  background: linear-gradient(135deg, rgba(233, 220, 197, 0.7), rgba(255, 250, 243, 0.8));
}

.hours-card {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location {
  background: var(--sand);
}

.muted {
  color: rgba(44, 29, 22, 0.6);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.map-placeholder {
  min-height: 260px;
  border-radius: var(--radius);
  border: 2px dashed rgba(75, 47, 36, 0.3);
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(44, 29, 22, 0.7);
  background: rgba(255, 255, 255, 0.4);
}

.map-placeholder span {
  display: block;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.contact-card {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-footer {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  font-size: 0.9rem;
  color: rgba(44, 29, 22, 0.7);
}

@keyframes float {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -12px);
    opacity: 1;
  }
}

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

  .nav-menu {
    position: absolute;
    right: 1.5rem;
    top: 64px;
    background: var(--white);
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .hero {
    padding-top: 3.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .hero-visual {
    padding: 2rem 1.5rem;
  }

  .cup {
    width: 130px;
  }
}
