:root {
  --bg: #f1e7d8;
  --cream: #fbf6ee;
  --ink: #33251b;
  --ink-dark: #2e2019;
  --brown: #5a4231;
  --muted: #6b5240;
  --accent: #b5824e;
  --accent-light: #e0b988;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family:
    "DM Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
::selection {
  background: var(--accent);
  color: var(--cream);
}
img {
  display: block;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* -- buttons / links -- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  border-radius: 999px;
  font-size: 16px;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 18px;
}
.btn-accent {
  background: var(--accent);
  color: var(--cream);
  padding: 15px 28px;
  box-shadow: 0 8px 22px rgba(122, 82, 49, 0.22);
}
.btn-sm.btn-accent {
  box-shadow: none;
}
.btn-outline {
  background: transparent;
  color: var(--brown);
  padding: 15px 26px;
  border: 1.5px solid rgba(111, 78, 55, 0.3);
}
.link-accent {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.eyebrow-light {
  color: var(--accent-light);
  margin-bottom: 14px;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(24px, 6vw, 80px);
  background: rgba(241, 231, 216, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(111, 78, 55, 0.12);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: "Darumadrop One", serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 2px;
}
.brand-sub {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9a7a5e;
  margin-top: 3px;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
}
.nav-link {
  text-decoration: none;
  color: var(--brown);
  font-size: 15px;
  font-weight: 500;
}

/* ---------- burger button ---------- */
.burger {
  display: none; /* hidden on desktop, shown on mobile */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--brown);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
/* animate into an X when open */
.burger.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- mobile dropdown menu ---------- */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  padding: 8px clamp(24px, 6vw, 80px) 18px;
  background: var(--bg);
  box-shadow: 0 10px 24px rgba(58, 42, 31, 0.12);
  border-bottom: 1px solid rgba(111, 78, 55, 0.12);
}
.mobile-menu.hidden {
  display: none;
}
.mobile-menu.flex {
  display: flex;
}
.mobile-link {
  text-decoration: none;
  color: var(--brown);
  font-size: 16px;
  font-weight: 500;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(111, 78, 55, 0.1);
}
.mobile-link:last-child {
  border-bottom: none;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: clamp(40px, 7vw, 90px) clamp(24px, 6vw, 80px) clamp(50px, 7vw, 90px);
}
.hero-copy {
  max-width: 560px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid rgba(111, 78, 55, 0.16);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #8a6b50;
  margin-bottom: 26px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero-title {
  font-family: "Darumadrop One", serif;
  font-weight: 900;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.5px;
  color: var(--ink-dark);
}
.hero-text {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--muted);
  margin-top: 24px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.hero-art-circle {
  position: absolute;
  width: min(420px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #e7d7c1;
  border: 1.5px solid rgba(111, 78, 55, 0.18);
}
.hero-bear {
  position: relative;
  z-index: 2;
  width: min(250px, 58%);
  height: auto;
  animation: floaty 6s ease-in-out infinite;
}
.photo-card {
  position: absolute;
  z-index: 3;
  width: 128px;
  height: 128px;
  border-radius: 22px;
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: 0 14px 30px rgba(58, 42, 31, 0.18);
}

.photo-card--latte {
  top: 6%;
  right: 2%;
  transform: rotate(5deg);
}
.photo-card--cookie {
  bottom: 4%;
  left: 0;
  width: 120px;
  height: 120px;
  transform: rotate(-6deg);
}

/* ---------- photo cards ---------- */
.photo,
.photo-latte {
  position: relative;
  width: 100%;
  height: 100%;
}
.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--brown);
  background: rgba(251, 246, 238, 0.9);
  padding: 4px 9px;
  border-radius: 6px;
  margin: 0;
}

/* ===== Menu section ===== */
.menu {
  padding: clamp(40px, 6vw, 80px) clamp(24px, 6vw, 80px);
  background: var(--cream);
  border-top: 1px solid rgba(111, 78, 55, 0.1);
  border-bottom: 1px solid rgba(111, 78, 55, 0.1);
}
.menu-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.menu-head {
  text-align: center;
  margin-bottom: 40px;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.menu-title {
  font-family: "Darumadrop One", serif;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--ink-dark);
  line-height: 1.05;
}

/* ===== Tabs ===== */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}
.tab {
  font-family: "DM Sans", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1.5px solid rgba(111, 78, 55, 0.22);
  background: transparent;
  color: var(--muted);
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}
.tab:hover {
  border-color: rgba(111, 78, 55, 0.4);
}
.tab.active {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--accent);
}

/* ===== Panels ===== */
.panel {
  display: none;
}
.panel.active {
  display: block;
}

/* ===== Espresso board ===== */
.board {
  background: var(--ink-dark);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 52px);
  color: var(--bg);
  box-shadow: 0 18px 40px rgba(58, 42, 31, 0.16);
}
.sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(34px, 5vw, 52px) clamp(40px, 6vw, 64px);
}
.sec-head {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(241, 231, 216, 0.32);
}
.sec-title {
  flex: 1;
  min-width: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 23px;
  color: var(--cream);
}
.col {
  width: 62px;
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.3px;
  color: var(--accent-light);
}
.row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(241, 231, 216, 0.1);
}
.item-name {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  color: var(--cream-soft);
}
.price {
  width: 62px;
  text-align: right;
  font-size: 14.5px;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}

/* ===== Sweets cards ===== */
.sweets {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.bake {
  background: var(--bg);
  border: 1px solid rgba(111, 78, 55, 0.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bake-photo {
  aspect-ratio: 1.3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: repeating-linear-gradient(
    135deg,
    var(--t1) 0 16px,
    var(--t2) 16px 32px
  );
}
.bake-photo span {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  color: var(--brown);
  background: rgba(251, 246, 238, 0.92);
  padding: 4px 9px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.bake-body {
  padding: 18px 20px 20px;
  flex: 1;
}
.bake-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.bake-name {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--ink-dark);
  line-height: 1.15;
}
.bake-price {
  font-size: 15px;
  color: var(--accent);
  white-space: nowrap;
}
.bake-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 7px;
}

/* ===== Note ===== */
.note {
  text-align: center;
  margin-top: 30px;
  font-size: 15px;
  color: var(--note);
}
.note a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

@media (max-width: 560px) {
  .col,
  .price {
    width: 54px;
  }
  .item-name {
    font-size: 15px;
  }
}

/* ---------- about ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  padding: clamp(50px, 7vw, 100px) clamp(24px, 6vw, 80px);
}
.about-media {
  position: relative;
}

.about-photo {
  background-image: url(assets/interior.png);
  background-position: center;
  background-size: cover;
  aspect-ratio: 1.05;
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(111, 78, 55, 0.14);
}
.about-badge {
  position: absolute;
  bottom: -22px;
  right: -10px;
  background: var(--cream);
  border: 1px solid rgba(111, 78, 55, 0.16);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 12px 28px rgba(58, 42, 31, 0.14);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.about-badge-text {
  font-family: "Darumadrop One", serif;
  font-size: 15px;
  color: var(--ink-dark);
  line-height: 1.2;
}
.about-text {
  max-width: 480px;
}
.about-title {
  font-family: "Darumadrop One", serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--ink-dark);
  line-height: 1.1;
  margin-bottom: 22px;
}
.about-p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 18px;
}
.about-p:last-child {
  margin-bottom: 0;
}

/* ---------- visit ---------- */
.visit {
  background: var(--ink-dark);
  color: var(--bg);
  padding: clamp(50px, 7vw, 90px) clamp(24px, 6vw, 80px);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.visit-title {
  font-family: "Darumadrop One", serif;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin-bottom: 30px;
  color: var(--cream);
}
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 420px;
}
.detail-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.detail-label {
  font-family: "Fraunces", serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  min-width: 64px;
  padding-top: 3px;
}
.detail-value {
  font-size: 16px;
  line-height: 1.7;
  color: #e7d7c1;
  text-decoration: none;
}
.detail-link {
  display: block;
}
.hours-line {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.hours-time {
  color: var(--cream);
}
.divider {
  height: 1px;
  background: rgba(241, 231, 216, 0.16);
}
.visit-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;   /* or 4/3, whatever fits the layout */
  overflow: hidden;
  border-radius: 12px;
}
.visit-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ---------- footer ---------- */
.site-footer {
  padding: clamp(36px, 5vw, 56px) clamp(24px, 6vw, 80px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.footer-name {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink-dark);
}
.footer-note {
  font-size: 14px;
  color: #8a6b50;
}

/* ---------- responsive ---------- */
@media (max-width: 820px) {
  .hero,
  .about,
  .visit-grid {
    grid-template-columns: 1fr;
  }
  .hero-art {
    min-height: 320px;
  }
  .nav-link {
    display: none;
  }
  .burger {
    display: flex;
  }
}

/* keep the mobile dropdown out of the way on desktop */
@media (min-width: 821px) {
  .mobile-menu,
  .mobile-menu.flex {
    display: none;
  }
}
