@import url('https://fonts.googleapis.com/css?family=Tangerine');

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Fredoka:wght@300;400;500;600&family=Patrick+Hand&display=swap');

/* =========================================================
   ROOT / GLOBAL
========================================================= */
:root{
  --sage: #3f6a57;
  --terra: #e08a5b;
  --terra-dark: #b86b49;
  --ink: #1b1b1b;
  --paper: #f7f3e8;
  --paper-soft: #fbf6ea;
  --paper-deep: #efe3cf;
  --glass: rgba(255,255,255,.45);
  --glass-soft: rgba(255,255,255,.35);
  --border: rgba(0,0,0,.10);
  --shadow-soft: 0 10px 24px rgba(0,0,0,.06);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--paper-soft);
  color: var(--ink);
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  margin: 0;
}

header,
footer {
  background-color: #E9E5CA;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

section {
  scroll-margin-top: 90px;
}

/* =========================================================
   NAVBAR (BRANDED)
========================================================= */
.navbar .container {
  max-width: 1200px;
}

.navbar-custom {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
  padding: 0.75rem 0;
}

/* Brand */
.navbar-custom .navbar-brand {
  font-weight: 700;
  color: var(--sage);
  font-size: 1.2rem;
  letter-spacing: .02em;
}

/* Links */
.navbar-custom .nav-link {
  color: rgba(0,0,0,.65);
  font-weight: 500;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  position: relative;
  transition: color .2s ease;
}

.navbar-custom .nav-link:hover {
  color: var(--terra-dark);
}

/* subtle underline animation */
.navbar-custom .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--terra);
  transition: width .2s ease;
}

.navbar-custom .nav-link:hover::after {
  width: 100%;
}

/* CTA button */
.navbar-custom .btn {
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  background: var(--sage);
  border: none;
  box-shadow: 0 6px 14px rgba(0,0,0,.1);
}

.navbar-custom .btn:hover {
  background: #355847;
}

/* =========================================================
   HERO / GENERAL SITE
========================================================= */
.hero-showcase {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 6rem;
  background:
    radial-gradient(circle at top left, rgba(224,138,91,.28), transparent 32%),
    radial-gradient(circle at bottom right, rgba(63,106,87,.18), transparent 30%),
    linear-gradient(135deg, #f7f3e8 0%, #fbf6ea 45%, #efe3cf 100%);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18)),
    url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b86b49' fill-opacity='0.13'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .9;
  pointer-events: none;
}

.hero-copy,
.hero-visual-wrap {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(0,0,0,.08);
  color: var(--sage);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.hero-title {
  color: var(--sage);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 1.1rem;
  max-width: 10ch;
}

.hero-text {
  color: rgba(0,0,0,.72);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 1.75rem;
  text-shadow: none;
}

.hero-actions {
  margin-bottom: 1.5rem;
}

.hero-btn {
  border-radius: 999px;
  padding: .95rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn-primary {
  background: var(--sage);
  border: 1px solid var(--sage);
  color: #fff;
}

.hero-btn-primary:hover {
  background: #355847;
  border-color: #355847;
  color: #fff;
}

.hero-btn-secondary {
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(0,0,0,.1);
  color: var(--ink);
}

.hero-btn-secondary:hover {
  background: rgba(255,255,255,.9);
  color: var(--ink);
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .65rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(0,0,0,.08);
  color: var(--terra-dark);
  font-weight: 600;
  font-size: .95rem;
  backdrop-filter: blur(6px);
}

.hero-visual-wrap {
  position: relative;
  min-height: 560px;
}

.hero-main-card {
  position: relative;
  width: min(100%, 500px);
  margin-left: auto;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 24px 55px rgba(0,0,0,.14);
  transform: rotate(-2deg);
}

.hero-main-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
}

.hero-card-top {
  top: 1.5rem;
  left: 0;
  padding: 1rem 1.1rem;
  max-width: 220px;
}

.hero-card-bottom {
  right: 1rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .8rem;
  max-width: 290px;
}

.hero-thumb-img {
  width: 74px;
  height: 74px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-mini-label {
  color: var(--terra-dark);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.hero-mini-title {
  color: var(--sage);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
}

.hero-sticker {
  position: absolute;
  left: 2rem;
  bottom: 5.2rem;
  z-index: 3;
  background: var(--terra);
  color: #fff;
  font-weight: 700;
  padding: .8rem 1rem;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.14);
  transform: rotate(-8deg);
}

.hero-bg-blur {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .55;
  pointer-events: none;
}

.hero-blur-1 {
  width: 240px;
  height: 240px;
  background: rgba(224,138,91,.35);
  top: 2rem;
  right: 18%;
}

.hero-blur-2 {
  width: 220px;
  height: 220px;
  background: rgba(63,106,87,.22);
  bottom: 2rem;
  left: 8%;
}

.hero-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-bear {
  width: 100px;
  bottom: 2rem;
  right: 42%;
  transform: rotate(6deg);
  z-index: 3;
}

.hero-deco-flower {
  width: 120px;
  top: 4.5rem;
  right: 5%;
  transform: rotate(10deg);
}

.hero-deco-arrow-top {
  width: 80px;
  top: 3rem;
  left: 52%;
  transform: rotate(-15deg);
  opacity: 0.7;
  z-index: 3;
}

.hero-deco-arrow-lower {
  display: block;
  width: 65px;
  margin-top: 0.5rem;
  opacity: 0.65;
  transform: rotate(5deg);
}

.hero-deco-boba {
  width: 85px;
  left: 43%;
  bottom: 5rem;
  transform: rotate(-10deg);
}

#social-footer {
  font-size: 30px;
  padding: 10px;
}

.section-main-head {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-main-head h2{
  color: var(--sage);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-family: serif;
  font-weight: 200;
  line-height: 1.05;
  text-align: center;
  width: 50%;
  /* margin: .25rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center; */
}

/* =========================================================
   SHARED SECTION TITLE PATTERN
========================================================= */
.section-title,
.plants-title,
.gallery-title,
.about-title,
.location-title {
  color: var(--sage);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 500;
  line-height: 1.05;
  font-family: serif;
  /* color: var(--terra-dark);
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  letter-spacing: .08em;
  font-size: clamp(2.2rem, 4vw, 3.8rem); */
  margin: .25rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kicker {
  color: var(--sage);
  letter-spacing: .18em;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  text-transform: uppercase;
}

.plants-sun,
.gallery-sun,
.about-sun,
.location-sun,
.sunburst {
  color: var(--terra);
}

.plants-rule-wrap,
.gallery-rule-wrap,
.about-rule-wrap,
.location-rule-wrap,
.menu-rule-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.plants-rule,
.gallery-rule,
.about-rule,
.location-rule,
.menu-rule {
  height: 2px;
  width: min(340px, 32vw);
  background: var(--ink);
  opacity: .9;
}

.plants-dot,
.gallery-dot,
.about-dot,
.location-dot,
.menu-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--ink);
}

.plants-subtitle,
.gallery-subtitle,
.about-subtitle,
.location-subtitle {
  font-family: "Patrick Hand", system-ui, sans-serif;
  color: var(--terra-dark);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}

/* =========================================================
   MENU - STACKED PANEL VERSION
========================================================= */
.menu-board {
  background: var(--paper-soft);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.menu-icon {
  display: flex;
  width: 10%;
}

.menu-panel {
  position: relative;
  background: var(--paper-soft);
  border-radius: 28px;
  padding: 3rem 3rem 2.5rem;
  overflow: hidden;
}

.menu-panel + .menu-panel {
  margin-top: 2rem;
}

.menu-main-title {
  color: var(--sage);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: .75rem;
  justify-content: center;
  align-items: center;
}

.menu-title-sun,
.mini-sun {
  color: var(--terra);
}

.menu-main-subnav {
  color: var(--sage);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-style: italic;
  font-weight: 300;
}

.menu-main-rule {
  border-top: 5px solid var(--sage);
  margin: 1.5rem 0 0;
}

.menu-section-heading {
  color: var(--sage);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  margin-bottom: .2rem;
}

.menu-section-divider {
  border-bottom: 6px solid var(--sage);
  width: 100%;
  max-width: 650px;
  margin-bottom: 1.5rem;
}

#tester {
  background-color: purple;
}

.short-divider {
  max-width: 420px;
}

.center-divider {
  max-width: 760px;
}

.menu-wide-divider {
  border-bottom: 6px solid var(--sage);
  width: 100%;
  margin: 3rem 0;
}

.menu-entry {
  margin-bottom: 2.2rem;
}

.menu-entry-title {
  color: var(--sage);
  font-size: clamp(1.9rem, 2.6vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
}

.menu-entry-desc {
  color: var(--terra);
  font-size: clamp(1.15rem, 1.8vw, 1.8rem);
  font-weight: 300;
  line-height: 1.2;
}

/* dotted price rows */
.menu-line-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.menu-line-item h6 {
  color: var(--terra);
  font-size: clamp(1.15rem, 1.8vw, 1.8rem);
  font-weight: 300;
  line-height: 1.2;
}

.menu-line-name {
  color: var(--sage);
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
}

.menu-line-dots {
  flex: 1;
  border-bottom: 6px dotted var(--sage);
  transform: translateY(.15em);
}

.menu-line-price {
  color: var(--sage);
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
  font-weight: 400;
}

/* toppings beige card */
.toppings-card {
  display: grid;
  background: var(--paper-deep);
  border-radius: 42px;
  padding: 2.5rem 2rem;
  max-width: 430px;
  margin: 6rem auto 0;
  position: relative;
  box-shadow: var(--shadow-soft);
  place-items: center;
}

.toppings-card-mobile {
  display: none;
}

#panel-1-imgs-mobile {
  display: none;
}

.toppings-price {
  color: var(--sage);
  font-size: clamp(2.3rem, 3vw, 3.5rem);
  font-weight: 600;
  line-height: 1.05;
}

.toppings-subtext {
  color: var(--terra);
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.toppings-label {
  color: var(--sage);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.toppings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .9rem;
}

.toppings-item {
  color: var(--sage);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.topping-art {
  width: 72px;
  height: auto;
  flex-shrink: 0;
}

.sweetness-title {
  color: var(--sage);
  font-size: 1.8rem;
  font-weight: 300;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.sweetness-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 58px;
  background: var(--paper-soft);
  border-radius: 14px;
  color: var(--sage);
  font-size: 1.3rem;
  font-weight: 400;
  margin: .25rem;
  box-shadow: 2px 3px 5px rgb(108, 105, 105);
}

/* dessert*/
.dessert {
  display: grid;
  align-items: center;
  place-items: center;
}

.dessert-blob {
  position: relative;
  background: #f2cfd9;
  border-radius: 46% 54% 51% 49% / 49% 41% 59% 51%;
  padding: 2rem 2rem 1.8rem;
  /* max-width: 780px;
  margin-top: 4rem;
  margin-left: 2rem; */
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: center;
}

.dessert-blob-title {
  color: var(--sage);
  font-size: clamp(1.9rem, 2.4vw, 2.7rem);
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
}

.dessert-blob-price {
  color: var(--sage);
  font-size: 2.4rem;
  font-weight: 600;
}

/* bagel / bun row */
.bagel-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.bagel-note {
  color: var(--sage);
  font-size: 1.4rem;
  font-weight: 300;
  padding-left: .25rem;
}

.bagel-price {
  color: var(--sage);
  font-size: 2.4rem;
  font-weight: 400;
  margin-top: .5rem;
}

/* kids panel */
.kids-panel {
  text-align: center;
  min-height: 900px;
}

.kids-line-name {
  font-weight: 600;
}

.kids-line-dots {
  max-width: 420px;
}

.kids-note-en {
  color: var(--sage);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 300;
  line-height: 1.45;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.kids-note-es {
  color: var(--terra);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 300;
  line-height: 1.45;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.kids-center-divider {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  border-top: 4px solid var(--terra);
  position: relative;
}

.kids-center-divider::after {
  content: "• • •";
  position: absolute;
  top: -1.1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--paper-soft);
  color: var(--terra);
  padding: 0 .75rem;
  font-size: 1.6rem;
}

.kids-footer-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--terra);
  font-size: clamp(1.6rem, 2vw, 2.3rem);
  font-weight: 500;
  margin-top: 6rem;
}

/* menu decorative art */
.menu-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.deco-flower-top-right {
  top: 1.25rem;
  right: 2rem;
  width: 92px;
}

.deco-hamster-2 {
width: 8%;
}

.deco-hamster-under-toppings {
  right: 2rem;
  top: 45rem;
  width: 150px;
}

.deco-flower-under-toppings {
  width: 30%;
  height: 30%;
}

.deco-boba {
  width: 25%;
}

.deco-boba-small {
  right: 1rem;
  top: 28rem;
  width: 72px;
}

.deco-boba-small-mobile {
  display: none;
}

.deco-flowers-bottom-left {
  left: 1rem;
  bottom: 0rem;
  width: 100px;
  z-index: 1
  ;
}

.deco-cat {
  width: 20%;
}

.deco-strawberry-dessert {
  width: 15%;
}

.deco-flowers-top-left {
  left: 1rem;
  top: 1rem;
  width: 10%;
  z-index: -2;
}

.deco-flowers-bottom-right {
  width: 120px;
}

.menu-panel > .row,
.menu-panel > header,
.menu-panel > .dessert-blob,
.menu-panel > .kids-line-wrap,
.menu-panel > .kids-note-en,
.menu-panel > .kids-note-es,
.menu-panel > .kids-center-divider,
.menu-panel > .kids-footer-note {
  position: relative;
  z-index: 2;
}

/* =========================================================
   PLANTS
========================================================= */
.plants-board {
  background: var(--paper-soft);
}

.plants-price {
  font-family: "Patrick Hand", system-ui, sans-serif;
  color: var(--terra-dark);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  margin: 0;
}

.plants-note {
  font-family: "Patrick Hand", system-ui, sans-serif;
  color: var(--terra-dark);
  opacity: .9;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
}

.plants-gift {
  margin-top: 22px;
}

.plant-card {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--glass-soft);
  padding: 18px;
}

.plant-card--wide {
  padding: 18px;
}

.plant-img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.35);
}

.plant-name {
  color: var(--ink);
  font-family: "Patrick Hand", system-ui, sans-serif;
  letter-spacing: .08em;
  font-weight: 700;
  font-size: 1.55rem;
  margin: 0 0 .75rem;
}

.plant-line {
  font-family: "Patrick Hand", system-ui, sans-serif;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.45;
  margin: .35rem 0;
}

.plant-label {
  font-weight: 700;
}

.plants-cta {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.55);
  padding: 18px;
}

.plants-cta-title {
  color: var(--sage);
  font-weight: 800;
  letter-spacing: .04em;
}

.plants-cta-text {
  color: rgba(0,0,0,.65);
}

/* =========================================================
   GALLERY
========================================================= */
.gallery-board {
  background: var(--paper-soft);
}

.gallery-pill {
  background: rgba(255,255,255,.55);
  border: 1px solid var(--border);
  color: var(--sage);
  font-weight: 700;
  padding: .6rem .9rem;
  border-radius: 999px;
}

.gallery-tile {
  display: block;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--glass-soft);
  text-decoration: none;
  transform: translateY(0);
  transition: transform .15s ease, box-shadow .15s ease;
  will-change: transform;
}

.gallery-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}

.gallery-tile img {
  transition: transform .25s ease;
}

.gallery-tile:hover img {
  transform: scale(1.02);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.55) 100%);
  opacity: .98;
  transition: opacity .2s ease;
}

.gallery-tile:hover .gallery-overlay {
  opacity: 1;
}

.gallery-chip {
  align-self: flex-start;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(255,255,255,.55);
  color: var(--sage);
  font-weight: 800;
  border-radius: 999px;
  padding: .35rem .6rem;
  margin-bottom: 10px;
  transform: translateY(2px);
  transition: transform .2s ease;
}

.gallery-tile:hover .gallery-chip {
  transform: translateY(0);
}

.gallery-caption {
  color: #fff;
}

.gallery-caption-title {
  font-weight: 900;
  letter-spacing: .03em;
}

.gallery-caption-sub {
  opacity: .9;
  font-size: .95rem;
}

.gallery-tile--feature .gallery-overlay {
  padding: 18px;
}

.gallery-cta {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.55);
  padding: 18px;
}

.gallery-cta-title {
  color: var(--sage);
  font-weight: 900;
  letter-spacing: .04em;
}

.gallery-cta-text {
  color: rgba(0,0,0,.65);
}

.gallery-modal {
  background: var(--paper-soft);
  border-radius: 22px;
}

#galleryModalImg {
  transition: filter .18s ease, opacity .18s ease, transform .18s ease;
}

#galleryModalImg.is-loading {
  filter: blur(10px);
  transform: scale(1.01);
  opacity: .85;
}

/* =========================================================
   ABOUT
========================================================= */
.about-board {
  background: var(--paper-soft);
}

.about-card {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--glass);
  padding: 22px;
}

.about-card-title {
  color: var(--sage);
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 12px;
}

.about-text {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(0,0,0,.75);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 12px;
}

.about-highlight {
  color: var(--terra-dark);
  font-weight: 800;
}

.about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-pill {
  background: rgba(255,255,255,.65);
  border: 1px solid var(--border);
  color: var(--sage);
  font-weight: 800;
  padding: .55rem .85rem;
  border-radius: 999px;
}

.about-feature {
  border: 1px dashed rgba(0,0,0,.15);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,.35);
  margin-bottom: 12px;
}

.about-feature-title {
  font-weight: 900;
  color: var(--ink);
  letter-spacing: .02em;
}

.about-feature-text {
  color: rgba(0,0,0,.68);
  margin-top: 4px;
}

.about-cta {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.55);
  padding: 14px;
}

.about-cta-title {
  color: var(--sage);
  font-weight: 900;
}

.about-cta-text {
  color: rgba(0,0,0,.65);
}

.about-quote {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.55);
  padding: 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.about-quote-mark {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--terra-dark);
  margin-top: -2px;
}

.about-quote-text {
  color: rgba(0,0,0,.72);
  font-size: 1.05rem;
  line-height: 1.55;
}

/* =========================================================
   LOCATION
========================================================= */
.location-board {
  background: var(--paper-soft);
}

.location-card {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--glass);
  padding: 22px;
}

.info-label {
  color: var(--sage);
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.info-value {
  color: rgba(0,0,0,.78);
  font-size: 1.05rem;
}

.info-note {
  color: rgba(0,0,0,.55);
  font-size: .95rem;
  margin-top: 6px;
}

.info-divider {
  border-top: 1px dashed rgba(0,0,0,.18);
}

.hours-table {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255,255,255,.35);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 6px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 800;
  color: rgba(0,0,0,.72);
  width: 54px;
}

.hours-time {
  color: rgba(0,0,0,.72);
  font-weight: 600;
}

.contact-list {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255,255,255,.35);
}

.contact-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 6px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-key {
  font-weight: 800;
  color: rgba(0,0,0,.70);
}

.contact-link {
  color: var(--terra-dark);
  font-weight: 800;
}

.contact-link:hover {
  text-decoration: underline;
}

.map-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.35);
}

.location-pill {
  background: rgba(255,255,255,.65);
  border: 1px solid var(--border);
  color: var(--sage);
  font-weight: 800;
  padding: .55rem .85rem;
  border-radius: 999px;
}

.location-note {
  color: rgba(0,0,0,.65);
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 12px 14px;
}

.contact-form {
  padding: 1rem;
  display: grid;
  justify-content: center;
  place-items: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 2rem;
}

.contact-form form {
  /* display: grid;
  justify-content: center;
  place-items: center;
  align-items: center; */
  width: 90%;
  background-color: white;
}

/* =========================================================
   FLOATING BUTTON
========================================================= */
.floating-order-btn {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1050;
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.floating-order-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991.98px) {
  .navbar-custom {
    backdrop-filter: none;
    background: #fff;
  }

  .hero-showcase {
    padding: 5.5rem 0 4.5rem;
  }

  .hero-title {
    max-width: none;
  }

  .hero-visual-wrap {
    min-height: auto;
    margin-top: 1rem;
  }

  .hero-main-card {
    width: 100%;
    transform: none;
  }

  .hero-main-img {
    height: 420px;
  }

  .hero-card-top {
    top: 1rem;
    left: 1rem;
  }

  .hero-card-bottom {
    right: 1rem;
    bottom: 1rem;
  }

  .hero-sticker {
    left: 1rem;
    bottom: 4.5rem;
  }

  .hero-deco-bear { display: none; }
  .hero-deco-arrow-top { display: none; }
  .hero-deco-arrow-lower { display: none; }

  .hero-deco-flower {
    width: 82px;
    top: 1rem;
    right: 1rem;
  }

  .hero-deco-boba {
    width: 72px;
    left: 37rem;
    top: 20rem;
  }

  .plant-card { padding: 14px; }
  .plant-line { font-size: 1.08rem; }

  .menu-panel {
    padding: 2rem 1.25rem;
  }

  .deco-boba-small {
    display: none;
  }
  
  .deco-boba-small-mobile {
    display: flex;
    width: 25%;
  }

  .toppings-card, #panel-1-imgs img {
    margin-top: 2rem;
    display: none;
  }

  .toppings-card-mobile {
    display: grid;
    place-items: center;
    background: var(--paper-deep);
    border-radius: 42px;
    padding: 2.5rem 2rem;
    width: 98%;
    position: relative;
    box-shadow: var(--shadow-soft);
  }
  
  #panel-1-imgs-mobile {
    display: flex;
    margin-top: 0rem;
    justify-content:space-between;
  }

  #panel-1-imgs-mobile img {
    width: 20vw;
    justify-content: unset;
  }

  .dessert {
    align-items: center;
  }

  .dessert-blob {
    margin-left: 0;
    max-width: 100%;
  }

  .dessert-blob-title {
    font-size: 4vw;
  }

  .menu-line-item {
    align-items: center;
  }

  .menu-line-name {
    max-width: 65%;
  }

  .kids-panel {
    min-height: auto;
  }

  .deco-hamster-2 {
    width: 17%;
  }

  .deco-flowers-bottom-right {
    width: 17%;
  }
}

@media (max-width: 575.98px) {
  .hero-showcase {
    padding: 4.75rem 0 4rem;
  }

  .hero-kicker {
    font-size: .8rem;
    letter-spacing: .06em;
  }

  .hero-title {
    font-size: clamp(2.3rem, 10vw, 3.4rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    display: grid !important;
  }

  .hero-main-img {
    height: 340px;
  }

  .hero-card-top {
    padding: 1rem;
    transform: rotate(-2deg);
  }

  .hero-card-bottom {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }

  .hero-card-bottom {
    /* flex-direction: row; */
  }

  .hero-sticker {
    /* position: static;
    display: inline-block; */
    transform: rotate(-4deg);
    margin-top: 1rem;
    bottom: 10rem;
    padding: .4rem;
  }

  .hero-deco-flower,
  .hero-deco-boba,
  .hero-bg-blur {
    display: none;
  }

  .menu-main-subnav {
    line-height: 1.35;
  }

  .menu-line-item {
    gap: .6rem;
  }

  .menu-line-dots {
    border-bottom-width: 4px;
  }

  .toppings-row {
    align-items: flex-start;
  }

  .topping-art {
    width: 52px;
  }

  .deco-cat {
  width: 60%;
  }
}

@media (max-width: 440px) {
  .deco-strawberry-dessert {
    width: 40%;
  }

  .deco-hamster-2 {
    margin: .5rem;
    width: 15%;
    height: 15%;
  }

  .deco-flowers-bottom-right {
    margin: .5rem;
    width: 15%;
    height: 15%;
  }
}

/* =========================================================
   PRINT
========================================================= */
@media print {
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  body * {
    visibility: hidden;
  }

  #menu,
  #menu * {
    visibility: visible;
  }

  #menu {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
  }

  .navbar,
  .floating-order-btn {
    display: none !important;
  }

  .menu-board {
    background: #fff !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
  }

  .menu-panel,
  .menu-block,
  .toppings-card,
  .dessert-blob {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .menu-deco {
    display: none !important;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* =========================================================
   MISSION STATEMENT (About section)
========================================================= */
.about-mission {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.55);
  padding: 22px 28px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}

.about-mission-label {
  width: 100%;
  color: var(--terra-dark);
  font-family: "Patrick Hand", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.about-mission .about-quote-text {
  flex: 1;
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.7;
}

.about-mission-sig {
  width: 100%;
  text-align: right;
  color: var(--sage);
  font-family: "Patrick Hand", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 8px;
}
