@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --cream: #f5f0e4;
  --ink: #172d23;
  --lime: #a8e44b;
  --purple: #59207d;
  --pink: #f5668f;
  --mango: #f5ad2f;
  --paper: #fffaf0;
  --line: rgba(23, 45, 35, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
::selection { background: var(--purple); color: white; }
:focus-visible { outline: 3px solid var(--mango); outline-offset: 4px; }

.site-shell { min-height: 100vh; overflow: hidden; }
.section-pad { padding-left: clamp(1.25rem, 4vw, 4.5rem); padding-right: clamp(1.25rem, 4vw, 4.5rem); }
.site-header {
  height: 90px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 20;
}
.brand img { width: 148px; height: 68px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 2rem; font-weight: 700; font-size: .9rem; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 3px; background: var(--purple); transition: right .2s ease; }
.desktop-nav a:hover::after { right: 0; }
.desktop-nav a[aria-current="page"]::after { right: 0; }
.header-order { justify-self: end; background: var(--ink); color: white; padding: .85rem 1.15rem; border-radius: 999px; font-weight: 800; font-size: .86rem; }
.header-order span { color: var(--lime); margin-left: .3rem; }
.mobile-menu { display: none; }

.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .13em; font-size: .73rem; font-weight: 800; }
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; margin: 0; line-height: .98; letter-spacing: -.045em; }
p { line-height: 1.7; }
.hero { min-height: calc(100svh - 90px); display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, .85fr); gap: clamp(2rem, 6vw, 7rem); align-items: center; padding-top: 4rem; padding-bottom: 5rem; position: relative; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(4rem, 7.7vw, 8.2rem); max-width: 900px; margin: 1.2rem 0 1.6rem; }
.hero h1 span { display: block; color: var(--purple); font-style: italic; }
.hero-copy > p { max-width: 660px; font-size: clamp(1rem, 1.3vw, 1.2rem); }
.button-row { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2rem; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: .65rem; padding: .85rem 1.35rem; border: 2px solid var(--ink); border-radius: 999px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-3px); }
.button-dark { background: var(--ink); color: white; }
.button-dark span { color: var(--lime); }
.button-ghost { background: transparent; }
.button-lime { background: var(--lime); }
.button-cream { background: var(--cream); color: var(--ink); }
.hero-art { position: relative; min-height: 650px; display: grid; place-items: center; }
.hero-frame { width: min(100%, 620px); aspect-ratio: .78; border-radius: 48% 48% 8rem 8rem; overflow: hidden; transform: rotate(2deg); box-shadow: 24px 24px 0 var(--lime); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.stamp { position: absolute; width: 145px; height: 145px; border-radius: 50%; display: grid; place-content: center; text-align: center; padding: 1rem; transform: rotate(-8deg); border: 2px solid var(--ink); }
.stamp strong { font-family: "Fraunces", Georgia, serif; font-size: 2rem; line-height: 1; }
.stamp span { font-size: .67rem; line-height: 1.25; text-transform: uppercase; font-weight: 800; letter-spacing: .07em; }
.stamp-lime { background: var(--lime); left: -2rem; bottom: 3rem; }
.stamp-mango { background: var(--mango); left: -3rem; bottom: 1rem; }
.scribble-note { position: absolute; right: -.6rem; top: 3.4rem; font-family: "Fraunces", Georgia, serif; color: var(--pink); font-size: 1.7rem; font-style: italic; transform: rotate(8deg); }
.fruit-orbit { position: absolute; border-radius: 50%; opacity: .75; }
.orbit-one { width: 80px; height: 80px; background: var(--mango); top: 8%; left: 46%; }
.orbit-two { width: 42px; height: 42px; background: var(--pink); bottom: 10%; left: 4%; }
.ticker { background: var(--purple); color: white; border-block: 2px solid var(--ink); transform: rotate(-1deg) scale(1.02); overflow: hidden; }
.ticker div { width: max-content; display: flex; align-items: center; gap: 1.6rem; padding: 1rem 0; font-weight: 800; font-size: .9rem; letter-spacing: .08em; animation: drift 24s linear infinite; }
.ticker b { color: var(--lime); }
@keyframes drift { to { transform: translateX(-30%); } }

.favorites { padding-top: 8rem; padding-bottom: 8rem; }
.section-heading h2 { font-size: clamp(3.2rem, 6vw, 6rem); max-width: 900px; margin-top: .8rem; }
.split-heading { display: grid; grid-template-columns: 1.5fr .6fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.split-heading > p { max-width: 460px; margin: 0; font-size: 1.05rem; }
.favorite-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.favorite-card { min-height: 650px; padding: 1.4rem; border: 2px solid var(--ink); position: relative; display: flex; flex-direction: column; overflow: hidden; }
.favorite-card.purple { background: var(--purple); color: white; }
.favorite-card.pink { background: var(--pink); }
.favorite-card.green { background: var(--lime); }
.favorite-number { font-family: "Fraunces", Georgia, serif; font-weight: 800; font-size: 1.1rem; }
.favorite-image { height: 330px; display: grid; place-items: center; margin: 1rem -.5rem 1.5rem; }
.favorite-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.favorite-card:hover .favorite-image img { transform: scale(1.04) rotate(-1deg); }
.card-kicker, .mini-tag { text-transform: uppercase; letter-spacing: .11em; font-weight: 800; font-size: .68rem; }
.favorite-card h3 { font-size: clamp(2.2rem, 3.2vw, 3.4rem); margin-top: .45rem; }
.favorite-card p { max-width: 430px; }
.text-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 800; text-decoration: underline; text-underline-offset: 5px; margin-top: auto; }

.manifesto { display: grid; grid-template-columns: 1fr 1fr; min-height: 820px; background: var(--paper); padding-top: 5rem; padding-bottom: 5rem; gap: clamp(3rem, 7vw, 8rem); align-items: center; border-block: 1px solid var(--line); }
.manifesto-photo { height: 680px; position: relative; background: var(--pink); padding: 1rem; transform: rotate(-2deg); }
.manifesto-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-label { position: absolute; left: 1rem; bottom: 1rem; background: var(--lime); border: 2px solid var(--ink); padding: .8rem 1rem; font-weight: 800; text-transform: uppercase; font-size: .72rem; letter-spacing: .08em; }
.manifesto-copy h2 { font-size: clamp(3.4rem, 6vw, 6.5rem); margin: 1rem 0 1.6rem; }
.manifesto-copy .lead { font-size: 1.13rem; }
.check-list { list-style: none; padding: 0; margin: 2rem 0; border-top: 1px solid var(--line); }
.check-list li { display: flex; gap: 1.2rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.check-list span { font-family: "Fraunces", Georgia, serif; color: var(--purple); }
.cta-slice { min-height: 540px; background: var(--purple); color: white; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.cta-slice h2 { font-size: clamp(3.5rem, 7vw, 7.5rem); max-width: 1100px; margin: 1rem auto 2rem; }

.page-hero { min-height: 680px; display: grid; grid-template-columns: 1.05fr .85fr; align-items: center; gap: 5rem; border-bottom: 2px solid var(--ink); }
.page-hero h1 { font-size: clamp(4.2rem, 8vw, 8.5rem); margin: 1rem 0; }
.page-hero p { font-size: 1.1rem; max-width: 650px; }
.menu-hero { background: var(--lime); }
.menu-hero-art { position: relative; height: 530px; display: grid; place-items: center; }
.menu-hero-art img { max-height: 520px; object-fit: contain; filter: drop-shadow(20px 28px 0 rgba(23,45,35,.12)); }
.menu-section { padding-top: 4rem; padding-bottom: 7rem; }
.menu-filters { display: flex; flex-wrap: wrap; gap: .65rem; position: sticky; top: 1rem; z-index: 10; padding: .75rem; width: fit-content; max-width: 100%; background: color-mix(in srgb, var(--cream) 92%, transparent); backdrop-filter: blur(12px); border: 1px solid var(--line); border-radius: 999px; }
.menu-filters button { border: 0; background: transparent; padding: .7rem 1rem; border-radius: 999px; cursor: pointer; font-weight: 800; color: var(--ink); }
.menu-filters button.active { background: var(--ink); color: white; }
.menu-count { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; margin: 2rem 0; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.menu-card { min-height: 390px; padding: 1.5rem; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); display: flex; flex-direction: column; justify-content: space-between; background: var(--paper); transition: background .2s ease; }
.menu-card:nth-child(6n+2), .menu-card:nth-child(6n+6) { background: color-mix(in srgb, var(--pink) 32%, var(--paper)); }
.menu-card:nth-child(6n+3) { background: color-mix(in srgb, var(--lime) 52%, var(--paper)); }
.menu-card.featured { background: var(--purple); color: white; }
.menu-card-top, .menu-card-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.menu-index, .menu-category, .menu-size { text-transform: uppercase; font-weight: 800; font-size: .65rem; letter-spacing: .09em; }
.menu-card h2 { font-size: clamp(2rem, 3vw, 3rem); margin: .75rem 0; }
.menu-card p { font-size: .9rem; }
.mini-tag { display: inline-block; background: var(--mango); color: var(--ink); padding: .35rem .55rem; border-radius: 999px; }
.menu-card-bottom > div { display: grid; gap: .25rem; }
.menu-card-bottom strong { font-family: "Fraunces", Georgia, serif; font-size: 1.55rem; }
.menu-card-bottom a { width: 64px; height: 64px; border: 2px solid currentColor; border-radius: 50%; display: grid; place-content: center; font-size: .7rem; font-weight: 800; transition: transform .2s ease; }
.menu-card-bottom a:hover { transform: rotate(8deg) scale(1.05); }
.menu-note { background: var(--mango); min-height: 360px; display: flex; justify-content: space-between; align-items: center; gap: 3rem; }
.menu-note h2 { font-size: clamp(2.8rem, 5vw, 5.2rem); max-width: 900px; margin-top: 1rem; }

.contact-hero { background: var(--pink); }
.contact-photo { height: 560px; position: relative; background: var(--purple); border-radius: 50% 50% 2rem 2rem; display: grid; place-items: end center; overflow: hidden; }
.contact-photo img { width: 100%; object-fit: contain; }
.contact-bubble { position: absolute; right: 1rem; top: 2rem; width: 120px; height: 120px; background: var(--lime); border: 2px solid var(--ink); border-radius: 50%; display: grid; place-content: center; font-family: "Fraunces", Georgia, serif; font-style: italic; font-size: 1.3rem; transform: rotate(9deg); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); padding-top: 6rem; padding-bottom: 6rem; gap: 1rem; }
.contact-card { min-height: 460px; padding: 2rem; border: 2px solid var(--ink); display: flex; flex-direction: column; }
.lime-card { background: var(--lime); }
.purple-card { background: var(--purple); color: white; }
.cream-card { background: var(--paper); }
.contact-number { font-family: "Fraunces", Georgia, serif; font-size: 1.2rem; }
.contact-card h2 { font-size: clamp(3rem, 4.5vw, 5rem); margin: auto 0 1rem; }
.hours-list { margin: 1rem 0 0; }
.hours-list div { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-top: 1px solid currentColor; }
.hours-list dt { font-weight: 700; }
.hours-list dd { margin: 0; }
.big-contact { font-family: "Fraunces", Georgia, serif; font-size: clamp(1.6rem, 2.4vw, 2.6rem); text-decoration: underline; text-underline-offset: 7px; }
.map-banner { min-height: 520px; background: var(--ink); color: white; display: grid; grid-template-columns: .7fr 1.3fr auto; gap: 4rem; align-items: center; }
.map-banner h2 { font-size: clamp(3rem, 5.5vw, 6rem); margin-top: 1rem; }
.map-path { display: flex; align-items: center; }
.map-path span, .map-path b { font-size: 2rem; color: var(--lime); }
.map-path i { height: 2px; flex: 1; background: repeating-linear-gradient(90deg, white 0 8px, transparent 8px 16px); }

.floating-whatsapp { display: none; }
.site-footer { background: var(--paper); padding-top: 5rem; padding-bottom: 2rem; }
.footer-top { display: grid; grid-template-columns: 1.3fr .8fr .5fr; gap: 4rem; padding-bottom: 4rem; }
.footer-logo { width: 165px; height: 85px; object-fit: contain; }
.footer-top p { max-width: 430px; }
.footer-top > div:last-child { display: flex; flex-direction: column; align-items: flex-start; gap: .65rem; }
.footer-label { display: block; text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; font-weight: 800; margin-bottom: 1rem; }
.footer-top a { font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: .72rem; font-weight: 700; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr .8fr; gap: 2rem; }
  .hero h1 { font-size: clamp(3.8rem, 8vw, 6.8rem); }
  .hero-art { min-height: 520px; }
  .favorite-grid, .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .favorite-card { min-height: 600px; }
  .manifesto { gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .site-header { height: 78px; grid-template-columns: 1fr auto; }
  .brand img { width: 118px; height: 58px; }
  .desktop-nav, .header-order { display: none; }
  .mobile-menu { display: block; justify-self: end; position: relative; }
  .mobile-menu summary { cursor: pointer; list-style: none; font-weight: 800; border: 2px solid var(--ink); border-radius: 999px; padding: .65rem .9rem; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu nav { position: absolute; right: 0; top: calc(100% + .7rem); width: min(80vw, 280px); background: var(--paper); border: 2px solid var(--ink); padding: .75rem; display: grid; }
  .mobile-menu nav a { padding: 1rem; font-weight: 800; border-bottom: 1px solid var(--line); }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 3.5rem; padding-bottom: 4rem; }
  .hero h1 { font-size: clamp(3.6rem, 16vw, 5.6rem); }
  .hero-art { min-height: 520px; }
  .hero-frame { height: 480px; width: 88%; }
  .stamp-lime { left: 0; }
  .orbit-one { left: auto; right: 2%; }
  .split-heading { grid-template-columns: 1fr; gap: 1rem; }
  .favorite-grid, .menu-grid, .manifesto, .page-hero, .contact-grid, .map-banner, .footer-top { grid-template-columns: 1fr; }
  .favorite-card { min-height: 570px; }
  .manifesto { padding-top: 3rem; padding-bottom: 4rem; }
  .manifesto-photo { height: 480px; }
  .page-hero { padding-top: 3.5rem; padding-bottom: 4rem; gap: 2rem; min-height: auto; }
  .page-hero h1 { font-size: clamp(4rem, 18vw, 6rem); }
  .menu-hero-art, .contact-photo { height: 430px; }
  .stamp-mango { left: 0; }
  .menu-section { padding-top: 2.5rem; }
  .menu-filters { position: static; width: 100%; border-radius: 1.2rem; }
  .menu-grid { border-left: 0; }
  .menu-card { min-height: 350px; border-left: 2px solid var(--ink); }
  .menu-note { flex-direction: column; align-items: flex-start; justify-content: center; }
  .contact-card:last-child { grid-column: auto; }
  .contact-card { min-height: 400px; }
  .map-banner { gap: 2rem; padding-top: 4rem; padding-bottom: 4rem; }
  .footer-top { gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { position: fixed; right: 1rem; bottom: 1rem; z-index: 30; display: flex; align-items: center; gap: .5rem; background: var(--ink); color: white; padding: .85rem 1rem; border: 2px solid var(--cream); border-radius: 999px; box-shadow: 0 8px 30px rgba(23,45,35,.25); font-size: .78rem; font-weight: 800; }
  .floating-whatsapp b { color: var(--lime); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
