:root {
  --cream: #fffaf2;
  --beige: #f4e4cb;
  --beige-2: #e8c79f;
  --caramel: #b87d4f;
  --brown: #5b321d;
  --brown-dark: #2d190e;
  --brown-soft: #7b5036;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(78, 42, 23, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--brown-dark);
  background: var(--cream);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 110px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: .3s ease;
}
.site-header.scrolled {
  background: rgba(255, 250, 242, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(45, 25, 14, .08);
}
.nav-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 230px; height: 74px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 28px; font-weight: 800; }
.main-nav a { position: relative; }
.main-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 3px;
  background: var(--caramel); border-radius: 99px; transition: .25s ease;
}
.main-nav a:hover::after { right: 0; }
.nav-cta { background: var(--brown); color: var(--white); padding: 13px 22px; border-radius: 999px; box-shadow: 0 10px 28px rgba(91, 50, 29, .22); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { width: 28px; height: 3px; display: block; margin: 5px 0; border-radius: 20px; background: var(--brown-dark); }

.hero {
  min-height: 790px;
  padding: 155px 0 85px;
  display: flex;
  align-items: center;
  position: relative;
  background:
    radial-gradient(circle at 8% 20%, rgba(232,199,159,.55), transparent 30%),
    radial-gradient(circle at 88% 85%, rgba(184,125,79,.22), transparent 28%),
    var(--cream);
}
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 70px; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 14px; color: var(--caramel); text-transform: uppercase; letter-spacing: .18em; font-weight: 900; font-size: .82rem; }
h1, h2, h3 { font-family: "Fredoka", sans-serif; margin-top: 0; }
h1 { font-size: clamp(3.4rem, 6vw, 6.2rem); line-height: .95; letter-spacing: -.04em; margin-bottom: 26px; }
h1 span { color: var(--caramel); display: block; }
h2 { font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.05; margin-bottom: 20px; }
h3 { font-size: 1.45rem; margin-bottom: 10px; }
.hero-text { max-width: 650px; font-size: 1.14rem; line-height: 1.75; color: #674c3d; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 30px; }
.btn { min-height: 52px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--brown); color: white; box-shadow: 0 14px 30px rgba(91,50,29,.25); }
.btn-secondary { border: 2px solid var(--brown); }
.btn-light { background: white; color: var(--brown); }
.btn-outline-light { border: 2px solid rgba(255,255,255,.72); color: white; }
.hero-highlights { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-highlights span { background: rgba(255,255,255,.75); border: 1px solid rgba(91,50,29,.08); padding: 10px 14px; border-radius: 999px; font-size: .9rem; font-weight: 800; }
.hero-visual { display: flex; justify-content: center; }
.mascot-card {
  width: min(500px, 100%); aspect-ratio: 1 / 1; border-radius: 44% 44% 36% 36%;
  background: linear-gradient(145deg, #f5dfbf, #d9a779); position: relative; display: grid; place-items: center;
  box-shadow: var(--shadow); transform: rotate(2deg); border: 10px solid rgba(255,255,255,.7);
}
.mascot-card img { width: 88%; height: 88%; object-fit: contain; mix-blend-mode: multiply; }
.mascot-ring { position: absolute; inset: 8%; border: 2px dashed rgba(91,50,29,.25); border-radius: 50%; animation: spin 24s linear infinite; }
.floating-note { position: absolute; background: var(--white); color: var(--brown); font-weight: 900; padding: 12px 17px; border-radius: 16px; box-shadow: 0 15px 35px rgba(45,25,14,.15); }
.note-one { left: -30px; top: 22%; transform: rotate(-8deg); }
.note-two { right: -18px; bottom: 19%; transform: rotate(7deg); }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; }
.hero-blob-one { width: 190px; height: 190px; background: var(--beige-2); left: -70px; bottom: 70px; }
.hero-blob-two { width: 130px; height: 130px; border: 22px solid var(--caramel); right: -40px; top: 150px; background: transparent; }

.section-heading { max-width: 760px; margin-bottom: 45px; }
.section-heading p:last-child { font-size: 1.08rem; line-height: 1.7; color: #735b4d; }
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card { background: white; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 18px 45px rgba(45,25,14,.08); transition: .25s ease; border: 1px solid rgba(91,50,29,.06); }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-image { height: 235px; position: relative; display: flex; align-items: flex-end; justify-content: center; padding: 18px; overflow: hidden; }
.product-image::before, .product-image::after { content: ""; position: absolute; border-radius: 50%; }
.product-image::before { width: 150px; height: 150px; background: rgba(255,255,255,.4); top: 28px; left: 50%; transform: translateX(-50%); }
.product-image::after { width: 78px; height: 78px; background: rgba(91,50,29,.16); top: 64px; left: 50%; transform: translateX(-50%); box-shadow: 0 30px 0 12px rgba(91,50,29,.12); }
.product-corn-dog { background: linear-gradient(145deg, #f3c678, #d28d45); }
.product-ramen { background: linear-gradient(145deg, #eeb48f, #bb5e3f); }
.product-bowl { background: linear-gradient(145deg, #c8d39a, #8ca05e); }
.product-beef { background: linear-gradient(145deg, #d7a17a, #87533c); }
.image-label { position: relative; z-index: 2; background: rgba(255,255,255,.84); padding: 8px 12px; border-radius: 999px; font-weight: 900; font-size: .78rem; }
.product-content { padding: 24px; }
.product-content p { min-height: 74px; line-height: 1.55; color: #765d4f; }
.tag { display: inline-block; color: var(--caramel); background: #fff1df; padding: 6px 10px; border-radius: 999px; font-weight: 900; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.product-footer { border-top: 1px solid #eee4d9; margin-top: 18px; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; }
.product-footer span { color: #8d7463; }
.product-footer strong { font-size: 1.25rem; }
.menu-cta { margin-top: 45px; padding: 28px 32px; border-radius: var(--radius-md); background: var(--beige); display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.menu-cta p { margin: 0; font-weight: 800; }

.story-section { background: white; }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.story-visual { min-height: 530px; position: relative; }
.story-card-main { position: absolute; inset: 0 60px 55px 0; background: linear-gradient(145deg, var(--beige), #d8ad80); border-radius: 46% 46% 28% 28%; display: grid; place-items: center; box-shadow: var(--shadow); overflow: hidden; }
.story-card-main img { width: 88%; mix-blend-mode: multiply; }
.story-card-small { position: absolute; right: 0; bottom: 0; width: 235px; padding: 22px; border-radius: 20px; background: var(--brown); color: white; font-family: "Fredoka"; font-size: 1.25rem; box-shadow: 0 18px 40px rgba(45,25,14,.2); transform: rotate(-3deg); }
.story-copy > p:not(.eyebrow) { font-size: 1.06rem; line-height: 1.8; color: #6d5547; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.stats div { background: var(--cream); border: 1px solid #eee1d4; border-radius: 18px; padding: 22px 16px; text-align: center; }
.stats strong { display: block; font-family: "Fredoka"; font-size: 1.8rem; color: var(--caramel); }
.stats span { font-size: .82rem; font-weight: 800; }

.experience-section { background: var(--brown-dark); color: white; position: relative; overflow: hidden; }
.experience-section::after { content: "HARUU"; position: absolute; right: -20px; bottom: -80px; font-family: "Fredoka"; font-size: 16rem; color: rgba(255,255,255,.035); }
.section-heading.light .eyebrow { color: var(--beige-2); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 2; }
.feature-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 34px; backdrop-filter: blur(10px); }
.feature-icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; background: var(--beige-2); color: var(--brown-dark); font-weight: 900; margin-bottom: 24px; }
.feature-card p { color: rgba(255,255,255,.72); line-height: 1.7; }

.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.info-list { display: grid; gap: 18px; margin: 30px 0; }
.info-list div { padding: 20px; border-left: 5px solid var(--caramel); background: white; border-radius: 0 16px 16px 0; box-shadow: 0 12px 32px rgba(45,25,14,.06); }
.info-list span, .info-list strong, .info-list small { display: block; }
.info-list span { color: var(--caramel); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 900; }
.info-list strong { margin: 5px 0; }
.info-list small { color: #887163; }
.map-placeholder { min-height: 470px; border-radius: 32px; background: linear-gradient(145deg, #edd9bf, #c89a6f); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.map-placeholder::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(91,50,29,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(91,50,29,.08) 1px, transparent 1px); background-size: 34px 34px; }
.map-pin { width: 86px; height: 86px; border-radius: 50% 50% 50% 8px; transform: rotate(-45deg); background: var(--brown); color: white; display: grid; place-items: center; font-family: "Fredoka"; font-size: 2rem; box-shadow: 0 16px 35px rgba(45,25,14,.2); position: relative; z-index: 2; }
.map-pin::first-letter { transform: rotate(45deg); }
.map-placeholder p, .map-placeholder span { position: relative; z-index: 2; }
.map-placeholder p { font-family: "Fredoka"; font-size: 2rem; margin: 35px 0 8px; }
.map-placeholder span { max-width: 320px; color: #644630; }

.contact-section { padding-top: 20px; }
.contact-box { background: linear-gradient(120deg, var(--caramel), var(--brown)); color: white; border-radius: 32px; padding: 58px; display: flex; align-items: center; justify-content: space-between; gap: 35px; box-shadow: var(--shadow); }
.contact-box .eyebrow { color: #ffe2bf; }
.contact-box h2 { margin-bottom: 12px; }
.contact-box p:last-child { margin: 0; color: rgba(255,255,255,.82); }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.site-footer { padding: 35px 0; background: #201108; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 30px; }
.footer-grid img { width: 210px; filter: brightness(0) invert(1); opacity: .88; }
.footer-grid p { text-align: center; }
.footer-grid a { color: white; font-weight: 800; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #25d366; color: white; font-weight: 900; box-shadow: 0 14px 34px rgba(0,0,0,.2); z-index: 900; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1020px) {
  .main-nav { position: fixed; top: 86px; left: 20px; right: 20px; background: white; border-radius: 24px; padding: 24px; flex-direction: column; align-items: stretch; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: .25s ease; }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .menu-toggle { display: block; }
  .hero-grid, .story-grid, .location-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-highlights { justify-content: center; }
  .hero-visual { margin-top: 20px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { gap: 55px; }
  .story-visual { min-height: 500px; }
  .location-grid { gap: 45px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 78px 0; }
  .nav-wrap { min-height: 78px; }
  .brand img { width: 175px; height: 56px; }
  .hero { padding-top: 120px; min-height: auto; }
  h1 { font-size: 3.15rem; }
  .hero-grid { gap: 40px; }
  .mascot-card { border-radius: 35% 35% 28% 28%; }
  .note-one { left: -5px; }
  .note-two { right: -5px; }
  .menu-grid, .feature-grid { grid-template-columns: 1fr; }
  .menu-cta, .contact-box { flex-direction: column; align-items: flex-start; }
  .story-visual { min-height: 390px; }
  .story-card-main { right: 25px; bottom: 45px; }
  .story-card-small { width: 190px; font-size: 1rem; }
  .stats { grid-template-columns: 1fr; }
  .contact-box { padding: 34px 24px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid img { margin: 0 auto; }
  .footer-grid p { margin: 0; }
}
