/* The Waffle Spot — static site styles */
:root {
  --amber: #f6a01a;
  --amber-deep: #e2760f;
  --yellow: #ffd54a;
  --cocoa: #2b1a12;
  --cocoa-soft: #4a2f21;
  --cream: #fff8ea;
  --card: #ffffff;
  --line: rgba(43, 26, 18, 0.12);
  --shadow: 0 14px 34px -18px rgba(43, 26, 18, 0.55);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--cocoa);
  font-family: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand {
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
  line-height: 1.15;
  margin: 0;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 234, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

.brand .mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, var(--yellow), var(--amber-deep));
  color: #fff;
  font-size: 1.1rem;
}

.brand span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.nav {
  display: none;
  gap: 22px;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav a { text-decoration: none; opacity: 0.8; }
.nav a:hover { opacity: 1; color: var(--amber-deep); }

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.call-btn:hover { filter: brightness(1.05); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(255, 213, 74, 0.55), transparent 60%),
    linear-gradient(180deg, #fff5df, var(--cream));
}

.hero-inner {
  display: grid;
  gap: 26px;
  padding: 46px 0 54px;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(246, 160, 26, 0.16);
  color: var(--amber-deep);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 8vw, 3.6rem);
  font-weight: 800;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--amber-deep), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  margin: 14px 0 0;
  max-width: 46ch;
  color: var(--cocoa-soft);
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 2px solid var(--cocoa);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
}

.btn-ghost:hover { background: var(--cocoa); color: var(--cream); }

.hero-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
}

.hero-photo img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

.badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  font-weight: 800;
  font-size: 0.8rem;
  box-shadow: var(--shadow);
}

.strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 0 34px;
}

.chip {
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ---------- sections ---------- */
section { padding: 52px 0; }

.section-head { margin-bottom: 26px; }
.section-head h2 { font-size: clamp(1.6rem, 5.5vw, 2.4rem); }
.section-head p { margin: 8px 0 0; color: var(--cocoa-soft); max-width: 56ch; }

.menu { background: #fffdf7; }

.menu-grid {
  display: grid;
  gap: 18px;
}

.menu-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 26px -22px rgba(43, 26, 18, 0.7);
}

.menu-card h3 {
  font-size: 1.2rem;
  color: var(--amber-deep);
  margin-bottom: 4px;
}

.menu-card .sub {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cocoa-soft);
  opacity: 0.75;
  margin-bottom: 14px;
}

table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }

thead th {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cocoa-soft);
  opacity: 0.7;
  font-weight: 800;
  padding-bottom: 8px;
  text-align: right;
}

thead th:first-child { text-align: left; }

tbody td {
  padding: 9px 0;
  border-top: 1px dashed var(--line);
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  white-space: nowrap;
}

tbody td:first-child {
  text-align: left;
  font-weight: 600;
  white-space: normal;
  padding-right: 10px;
}

.tag-new {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 999px;
  background: var(--amber);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  vertical-align: middle;
}

.note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--cocoa-soft);
  opacity: 0.8;
}

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  transition: transform 0.45s ease;
}

.gallery-grid figure:hover img { transform: scale(1.06); }

/* ---------- reviews ---------- */
.reviews { background: var(--cocoa); color: var(--cream); }
.reviews .section-head p { color: rgba(255, 248, 234, 0.75); }

.review-grid { display: grid; gap: 16px; }

.review {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px;
}

.stars { color: var(--yellow); letter-spacing: 2px; font-size: 0.95rem; }

.review p { margin: 10px 0 14px; font-size: 0.95rem; }

.review .who { font-weight: 800; font-size: 0.88rem; }
.review .meta { font-size: 0.76rem; opacity: 0.6; }

/* ---------- visit ---------- */
.visit-grid { display: grid; gap: 18px; }

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 26px -22px rgba(43, 26, 18, 0.7);
}

.info-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.info-card p { margin: 0; color: var(--cocoa-soft); font-size: 0.95rem; }
.info-card a { color: var(--amber-deep); font-weight: 800; text-decoration: none; }

footer {
  background: var(--cocoa);
  color: rgba(255, 248, 234, 0.72);
  padding: 30px 0;
  font-size: 0.85rem;
  text-align: center;
}

/* ---------- desktop ---------- */
@media (min-width: 720px) {
  .nav { display: flex; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .nav { justify-content: center; }
  .hero-inner { grid-template-columns: 1.05fr 1fr; align-items: center; padding: 76px 0 84px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .visit-grid { grid-template-columns: repeat(3, 1fr); }
  section { padding: 76px 0; }
}
