/* ===========================================================
   DESIGN TOKENS — change these to re-theme the whole site
   =========================================================== */
:root {
  --bg:       #fffaf0;   /* bright warm white */
  --surface:  #ffffff;
  --ink:      #221b16;
  --ink-soft: #6c6259;
  --coral:    #ff5436;   /* primary / appetite */
  --sun:      #ffc23d;   /* warm yellow */
  --leaf:     #2f9e5b;   /* fresh green */
  --snorlax:  #3a6e7e;   /* Snorlax teal */
  --snorlax-light: #5fa0b3;
  --snorlax-deep:  #1c3c47;   /* deep navy-teal for dark sections */
  --line:     #f0e6d6;

  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;

  --maxw: 1150px;
  --radius: 18px;
}

/* ===========================================================
   BASE
   =========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--font-body); font-size: 1.05rem; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--coral); text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.05; font-weight: 800; letter-spacing: -0.02em; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-block; font-family: var(--font-body); font-weight: 700; font-size: 0.98rem;
  padding: 0.85em 1.7em; border-radius: 999px; cursor: pointer;
  background: var(--coral); color: #fff; border: 2px solid var(--coral);
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); background: #e23f23; border-color: #e23f23; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }

/* ===========================================================
   NAV (shared)
   =========================================================== */
header.nav {
  position: sticky; top: 0; z-index: 1000;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.brand:hover { text-decoration: none; }
.brand .logo { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; display: inline-block; background: var(--line); }
.foot .brand .logo { width: 32px; height: 32px; }
.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-links a { color: var(--ink-soft); font-weight: 600; font-size: 0.96rem; }
.nav-links a:hover { color: var(--coral); text-decoration: none; }
.nav-links a.active { color: var(--ink); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

/* ===========================================================
   FOOTER (shared)
   =========================================================== */
footer.foot { border-top: 1px solid var(--line); padding: 54px 0; margin-top: 30px; }
.foot-in { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.foot-in .brand { font-size: 1.2rem; }
.foot-links { display: flex; gap: 22px; list-style: none; }
.foot-links a { color: var(--ink-soft); font-weight: 600; font-size: 0.92rem; }
.foot-links a:hover { color: var(--coral); }

/* ===========================================================
   HOME — HERO CAROUSEL
   To use a real photo: on a .slide, replace the gradient with
     background-image: url('your-photo.jpg');
     background-size: cover; background-position: center;
   =========================================================== */
.hero { padding: 28px 0 12px; }
.carousel {
  position: relative; border-radius: 28px; overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(34,27,22,0.4);
}
.slides { position: relative; height: clamp(380px, 56vw, 560px); }
.slide {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  padding: clamp(28px, 5vw, 60px);
  opacity: 0; transition: opacity 0.8s ease; pointer-events: none;
}
.slide.on { opacity: 1; pointer-events: auto; }
.slide::after { /* readability scrim */
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.7), rgba(0,0,0,0.15) 55%, transparent 80%),
    linear-gradient(90deg, rgba(0,0,0,0.45), transparent 55%);
}
.slide-text { position: relative; z-index: 2; color: #fff; max-width: 30ch; }
.slide-text .kicker { font-weight: 700; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.95; }
.slide-text h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.6rem); margin: 6px 0 8px; }
.slide-text p { font-size: 1.05rem; opacity: 0.95; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  background: rgba(255,255,255,0.95); color: var(--ink);
  font-weight: 700; font-size: 0.82rem; padding: 6px 12px; border-radius: 999px;
}
/* arrows + dots */
.c-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,0.9); color: var(--ink); font-size: 1.2rem; line-height: 1;
  display: grid; place-items: center; transition: background 0.2s;
}
.c-btn:hover { background: #fff; }
.c-prev { left: 16px; } .c-next { right: 16px; }
.dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 9px; }
.dot {
  width: 9px; height: 9px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,0.5); transition: all 0.2s;
}
.dot.on { background: #fff; width: 26px; border-radius: 6px; }

/* ===========================================================
   HOME — INTRO STRIP
   =========================================================== */
.intro { text-align: center; padding: clamp(54px, 8vw, 90px) 0 20px; }
.intro h1 { font-size: clamp(2.2rem, 6vw, 4rem); max-width: 16ch; margin: 0 auto; }
.intro h1 .hl { color: var(--coral); }
.intro p { margin: 22px auto 0; max-width: 56ch; color: var(--ink-soft); font-size: 1.15rem; }

/* ===========================================================
   HOME — SECTION SHELL + FEATURED EATS
   =========================================================== */
.section { padding: clamp(50px, 8vw, 96px) 0; }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 38px; flex-wrap: wrap; }
.sec-head h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.sec-head .sub { color: var(--ink-soft); margin-top: 6px; }

.eat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.eat {
  display: block; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.eat:hover { text-decoration: none; }
.eat:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -26px rgba(34,27,22,0.4); }
.eat .pic { height: 180px; }
.eat .body { padding: 22px 22px 26px; }
.eat .where { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--coral); }
.eat h3 { font-size: 1.4rem; margin: 6px 0 4px; }
.eat .place { color: var(--ink-soft); font-weight: 600; font-size: 0.9rem; margin-bottom: 10px; }
.eat p { color: var(--ink-soft); font-size: 0.97rem; }
.eat .ig-link { display: inline-block; margin-top: 14px; font-size: 0.86rem; font-weight: 700; color: var(--coral); }

/* ===========================================================
   HOME — TCG STRIP
   =========================================================== */
.tcg { background: linear-gradient(135deg, var(--snorlax-deep), var(--snorlax)); color: var(--bg); border-radius: 28px; overflow: hidden; }
.tcg .grid { display: grid; grid-template-columns: 1.1fr 1fr; }
.tcg .text { padding: clamp(36px, 5vw, 64px); }
.tcg h2 { color: var(--sun); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.tcg p { color: color-mix(in srgb, var(--bg) 78%, transparent); margin: 16px 0 26px; max-width: 46ch; }
.tcg .tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.tcg .tag { border: 1px solid rgba(255,255,255,0.25); color: var(--bg); padding: 6px 14px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; }
.tcg .btn { background: var(--sun); color: var(--ink); border-color: var(--sun); }
.tcg .btn:hover { background: #ffb31f; border-color: #ffb31f; }
.tcg .cards { position: relative; min-height: 260px; background: radial-gradient(circle at 70% 30%, rgba(255,194,61,0.25), transparent 60%); display: grid; place-items: center; }
.pcard {
  width: 130px; height: 182px; border-radius: 12px; position: absolute;
  box-shadow: 0 16px 30px -16px rgba(0,0,0,0.6); border: 3px solid #fff;
}
.pcard.p1 { background: linear-gradient(160deg, #ffe27a, #ff5436); transform: rotate(-14deg) translateX(-70px); }
.pcard.p2 { background: linear-gradient(160deg, #8ed0ff, #2f6fe0); transform: rotate(0deg); z-index: 2; }
.pcard.p3 { background: linear-gradient(160deg, #c39bff, #6f3fd6); transform: rotate(14deg) translateX(70px); }

/* ===========================================================
   ABOUT — PAGE HEAD
   =========================================================== */
body.about .head { padding: clamp(54px, 9vw, 110px) 0 clamp(30px, 5vw, 60px); text-align: center; }
body.about .head .kicker { display: inline-block; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral); margin-bottom: 16px; }
body.about .head h1 { font-size: clamp(2.4rem, 7vw, 4.4rem); max-width: 16ch; margin: 0 auto; }
body.about .head p { margin: 20px auto 0; max-width: 54ch; color: var(--ink-soft); font-size: 1.15rem; }

/* ===========================================================
   ABOUT — STORY
   =========================================================== */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: clamp(40px, 7vw, 80px) 0; }
.story .portrait {
  aspect-ratio: 4/5; border-radius: 24px;
  background: linear-gradient(150deg, var(--snorlax-light), var(--snorlax) 60%, var(--snorlax-deep));
  display: grid; place-items: center; color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; text-align: center;
  box-shadow: 0 24px 50px -28px rgba(28,60,71,0.5);
}
.story h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 18px; }
.story p { color: var(--ink-soft); margin-bottom: 16px; }
.story p strong { color: var(--ink); }

/* ===========================================================
   ABOUT — VALUES ROW
   =========================================================== */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding-bottom: clamp(40px, 7vw, 80px); }
.value { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; }
.value .ico { font-size: 1.8rem; }
.value h3 { font-size: 1.25rem; margin: 12px 0 8px; }
.value p { color: var(--ink-soft); font-size: 0.96rem; }

/* ===========================================================
   ABOUT — KUMA STRIP
   =========================================================== */
.kuma { background: linear-gradient(135deg, var(--snorlax-deep), var(--snorlax)); border-radius: 28px; color: var(--bg); overflow: hidden; margin: 0 0 clamp(50px, 8vw, 90px); }
.kuma .grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0; align-items: center; }
.kuma .text { padding: clamp(36px, 5vw, 60px); }
.kuma .kicker { color: var(--sun); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; }
.kuma h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); margin: 10px 0 18px; }
.kuma p { color: color-mix(in srgb, var(--bg) 80%, transparent); margin-bottom: 14px; max-width: 44ch; }
.kuma .stat-list { list-style: none; margin-top: 22px; display: grid; gap: 10px; }
.kuma .stat-list li { display: flex; gap: 10px; align-items: flex-start; color: color-mix(in srgb, var(--bg) 88%, transparent); }
.kuma .stat-list .b { color: var(--sun); font-weight: 800; }

/* ABOUT — Kuma's Pokémon card slot (placeholder shown until img/about/kuma-card.png exists) */
.cardstage { display: grid; place-items: center; padding: clamp(30px, 5vw, 50px); background: radial-gradient(circle at 50% 30%, rgba(95,160,179,0.28), transparent 60%); }
.kuma-photo {
  width: min(320px, 80%); height: auto; border-radius: 18px;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,0.7);
  transform: rotate(-2deg); transition: transform 0.3s ease;
}
.kuma-photo:hover { transform: rotate(0deg) scale(1.03); }

/* Placeholder "buddy card" — visible until your real card image is added */
.buddycard {
  width: min(300px, 80%); aspect-ratio: 5/7; border-radius: 18px;
  background: #cfe7f3;
  border: 6px solid #fff; box-shadow: 0 30px 60px -28px rgba(0,0,0,0.7);
  padding: 14px; display: flex; flex-direction: column; color: var(--snorlax-deep); font-family: var(--font-body);
}
.buddycard .top { display: flex; justify-content: space-between; align-items: baseline; }
.buddycard .top .name { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; }
.buddycard .top .hp { font-weight: 800; color: var(--coral); font-size: 0.95rem; }
.buddycard .art { flex: 1; margin: 10px 0; border-radius: 10px; background: #fff; overflow: hidden; position: relative; }
.buddycard .art img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.buddycard .move { border-top: 1px dashed rgba(28,60,71,0.25); padding-top: 8px; font-size: 0.85rem; }
.buddycard .move b { color: var(--coral); }
.buddycard .flavor { font-size: 0.72rem; font-style: italic; opacity: 0.75; margin-top: 8px; }

/* ===========================================================
   EATS — PAGE HEAD
   =========================================================== */
body.eats .head { padding: clamp(46px, 7vw, 84px) 0 clamp(24px, 4vw, 40px); }
body.eats .head .kicker { display: inline-block; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral); margin-bottom: 14px; }
body.eats .head h1 { font-size: clamp(2.4rem, 6vw, 4rem); max-width: 18ch; }
body.eats .head p { margin-top: 16px; max-width: 54ch; color: var(--ink-soft); font-size: 1.12rem; }

/* ===========================================================
   EATS — FEATURED (rotating)
   =========================================================== */
.featured {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 0;
  border-radius: 24px; overflow: hidden; border: 1px solid var(--line);
  background: var(--surface); margin-bottom: 40px;
  box-shadow: 0 22px 50px -34px rgba(34,27,22,0.4);
}
.featured .pic { min-height: 240px; background: linear-gradient(135deg, #ffd24d, #ff5436); display: grid; place-items: end; padding: 22px; }
.featured .pic .tag { background: rgba(255,255,255,0.95); color: var(--ink); font-weight: 700; font-size: 0.8rem; padding: 6px 12px; border-radius: 999px; }
.featured .info { padding: clamp(26px, 4vw, 44px); }
.featured .info .lab { color: var(--sun); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.78rem; }
.featured .info h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin: 8px 0 6px; }
.featured .info .where { color: var(--coral); font-weight: 700; }
.featured .info p { color: var(--ink-soft); margin: 14px 0 20px; }

/* ===========================================================
   EATS — MAP
   =========================================================== */
#map { height: 460px; width: 100%; border-radius: 24px; border: 1px solid var(--line); z-index: 1; }
.map-note { color: var(--ink-soft); font-size: 0.85rem; margin-top: 10px; }

/* ===========================================================
   EATS — LIST OF SPOTS
   =========================================================== */
.list { padding: clamp(46px, 7vw, 80px) 0; }
.list h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 8px; }
.list .sub { color: var(--ink-soft); margin-bottom: 34px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.rcard:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -26px rgba(34,27,22,0.4); }
.rcard .swatch { height: 120px; }
.rcard .b { padding: 20px 20px 24px; }
.rcard .where { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--coral); }
.rcard h3 { font-size: 1.25rem; margin: 6px 0 6px; }
.rcard p { color: var(--ink-soft); font-size: 0.94rem; }
.rcard .dish { display: inline-block; margin-top: 10px; font-size: 0.82rem; font-weight: 700; color: var(--leaf); }

/* ===========================================================
   EATS — INSTAGRAM STRIP
   =========================================================== */
.ig { background: linear-gradient(135deg, #ff5436, #ff8a4c); border-radius: 24px; color: #fff; text-align: center; padding: clamp(40px, 6vw, 64px) 24px; margin-bottom: 30px; }
.ig h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.ig p { max-width: 46ch; margin: 12px auto 24px; opacity: 0.95; }
.ig .btn { background: #fff; color: var(--coral); border-color: #fff; }
.ig .btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 820px) {
  /* shared nav drawer */
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 340px; }
  .nav-links li { width: 100%; border-top: 1px solid var(--line); }
  .nav-links a { display: block; padding: 16px 24px; }
  .nav-toggle { display: block; }

  /* home */
  .eat-grid { grid-template-columns: 1fr; }
  .tcg .grid { grid-template-columns: 1fr; }
  .tcg .cards { min-height: 220px; }

  /* about */
  .story { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .kuma .grid { grid-template-columns: 1fr; }

  /* eats */
  .featured { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
}
