/* =========================================================================
   Tossful brand-site v2 — production-fidelity rebuild from marketing mockup
   ========================================================================= */

:root {
  --toss-kale:          #0F563D;
  --toss-kale-deep:     #0a3e2c;
  --toss-beetroot:      #F8E3F3;
  --toss-almond:        #7D291A;
  --toss-squash:        #F68C02;
  --toss-sweet-potato:  #FFE9C2;
  --toss-cabbage:       #F4F1E6;
  --toss-black-rice:    #000000;
  --toss-white:         #FFFFFF;

  --bg: var(--toss-cabbage);
  --ink: var(--toss-black-rice);
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Questrial', system-ui, -apple-system, sans-serif;
  --max-w: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-pad: clamp(56px, 8vw, 120px);
  --radius: 18px;
  --radius-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--toss-kale); text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

h1,h2,h3,h4 {
  font-family: var(--font-head); font-weight: 300; font-style: italic;
  letter-spacing: -0.05em; margin: 0 0 0.4em; line-height: 1.05;
}
h1 { font-size: clamp(48px, 8vw, 96px); }
h2 { font-size: clamp(36px, 5.5vw, 64px); }
h3 { font-size: clamp(22px, 2.6vw, 32px); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: var(--section-pad) 0; }

html[lang="vi"] [lang="en"] { display: none !important; }
html[lang="en"] [lang="vi"] { display: none !important; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  border: 1.5px solid transparent; transition: all 0.18s ease;
  text-decoration: none; cursor: pointer; white-space: nowrap;
}
.btn-primary  { background: var(--toss-kale); color: var(--toss-white); border-color: var(--toss-kale); }
.btn-primary:hover { background: var(--toss-kale-deep); border-color: var(--toss-kale-deep); }
.btn-outline { background: transparent; color: var(--toss-kale); border-color: var(--toss-kale); padding: 12px 24px; font-size: 14px; }
.btn-outline:hover { background: var(--toss-kale); color: var(--toss-white); }
.btn-pink { background: var(--toss-beetroot); color: var(--toss-kale); border-color: var(--toss-beetroot); }
.btn-pink:hover { background: var(--toss-white); }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--toss-kale); color: var(--toss-white);
}
/* TSK-125: Sweetgreen 3-column layout — browse LEFT, logo CENTER, utility RIGHT.
   1fr auto 1fr keeps the logo geometrically centered regardless of side counts. */
.site-header__inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
  padding: 14px var(--gutter); max-width: var(--max-w); margin: 0 auto;
}
.site-header__logo { justify-self: center; }
.site-header__logo img { height: 38px; width: auto; display: block; }

/* LEFT browse nav + mobile drawer share the inline-link visuals */
.site-browse { display: flex; gap: 28px; align-items: center; justify-self: start; }
.site-browse, .site-nav {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
}
.site-browse a, .site-nav a { color: var(--toss-white); position: relative; padding: 6px 0; }
.site-browse a:hover, .site-nav a:hover { opacity: 0.85; }
.site-browse a.is-active::after, .site-nav a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--toss-beetroot);
}
/* Highlighted calculator pill — lives in RIGHT utility + mobile drawer */
.site-header a.is-highlight {
  background: var(--toss-beetroot); color: var(--toss-kale);
  padding: 8px 16px; border-radius: var(--radius-pill);
  position: relative; font-weight: 500;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
}
.site-header a.is-highlight:hover { background: var(--toss-white); opacity: 1; }
.site-header a.is-highlight.is-active { background: var(--toss-beetroot); }
.site-header a.is-highlight.is-active::after { display: none; }
.site-header a.is-highlight .nav-badge {
  display: inline-block; background: var(--toss-squash); color: var(--toss-white);
  font-size: 9px; font-weight: 600; letter-spacing: 0.1em;
  padding: 2px 6px; border-radius: 3px; margin-left: 6px;
  vertical-align: middle; position: relative; top: -1px;
}
.site-header__right { display: flex; align-items: center; gap: 16px; justify-self: end; }
/* Drawer is mobile-only; hidden on desktop where browse/utility show inline. */
.site-nav { display: none; }
.lang-switch {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--toss-white); font-size: 12px; letter-spacing: 0.08em;
  padding: 8px 14px; border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase;
}
.lang-switch:hover { border-color: var(--toss-white); }
.menu-toggle { display: none; background: none; border: 0; color: var(--toss-white); padding: 8px; font-size: 22px; }

/* ANNOUNCE */
.announce {
  background: var(--toss-squash); color: var(--toss-kale);
  font-family: var(--font-head); font-style: italic; font-size: 18px;
  padding: 10px 0; overflow: hidden;
}
.announce__track {
  display: flex; width: max-content; gap: 60px; white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.announce__track span::before { content: '·'; margin: 0 30px; opacity: 0.55; }
.announce__track span:first-child::before { content: ''; margin: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* HERO */
.hero {
  position: relative; padding: 0; min-height: 640px;
  background: var(--toss-kale-deep); overflow: hidden; color: var(--toss-white);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.4s ease-in-out;
}
.hero__bg img.is-active { opacity: 1; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,86,61,0.55) 0%, rgba(15,86,61,0.35) 40%, rgba(15,86,61,0.7) 100%);
}
.hero__inner {
  position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto;
  padding: clamp(56px, 9vw, 120px) var(--gutter) clamp(80px, 12vw, 140px);
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end;
}
.hero__eyebrow {
  display: inline-block; background: var(--toss-almond); color: var(--toss-white);
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 12px; padding: 8px 18px; border-radius: var(--radius-pill); margin-bottom: 28px;
}
.hero__services { display: flex; flex-direction: column; gap: 18px; }
.hero__service { display: grid; grid-template-columns: minmax(180px, auto) 1fr; gap: 32px; align-items: baseline; }
.hero__service-title {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  letter-spacing: -0.05em; font-size: clamp(40px, 6vw, 72px);
  color: var(--toss-white); line-height: 1;
}
.hero__service-text { font-size: 14px; line-height: 1.5; max-width: 36ch; opacity: 0.92; }
.hero__service-text a {
  display: block; color: var(--toss-beetroot); text-decoration: underline;
  margin-top: 6px; font-size: 13px; letter-spacing: 0.04em;
}
.hero__tag { font-family: var(--font-body); text-align: right; font-size: 14px; opacity: 0.9; align-self: end; }
.hero__arrows {
  position: absolute; z-index: 3; top: 50%; transform: translateY(-50%);
  width: calc(100% - var(--gutter) * 2); left: var(--gutter); right: var(--gutter);
  display: flex; justify-content: space-between; pointer-events: none;
}
.hero__arrow {
  pointer-events: auto; background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.5); color: var(--toss-white);
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all 0.18s ease;
}
.hero__arrow:hover { background: var(--toss-white); color: var(--toss-kale); }
.hero__dots {
  position: absolute; z-index: 3; bottom: 24px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
}
.hero__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.45); border: 0; transition: all 0.18s ease;
}
.hero__dot.is-active { background: var(--toss-white); width: 32px; border-radius: var(--radius-pill); }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__tag { text-align: left; }
  .hero__service { grid-template-columns: 1fr; gap: 4px; }
}

/* MENU PREVIEW */
.menu-preview { background: var(--bg); }
.tab-headlines { display: flex; justify-content: center; gap: 44px; flex-wrap: wrap; margin-bottom: 18px; }
.tab-headline {
  background: transparent; border: 0;
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  letter-spacing: -0.05em; font-size: clamp(36px, 5vw, 60px);
  color: var(--toss-kale); opacity: 0.32; padding: 8px 6px;
  transition: opacity 0.18s ease;
}
.tab-headline[aria-selected="true"] { opacity: 1; }
.tab-headline:hover { opacity: 0.7; }
.tab-headline[aria-selected="true"]:hover { opacity: 1; }
.subtab-list { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.subtab-btn {
  background: transparent; border: 1.5px solid var(--toss-kale); color: var(--toss-kale);
  padding: 8px 22px; border-radius: var(--radius-pill); font-size: 14px;
}
.subtab-btn[aria-selected="true"] { background: var(--toss-kale); color: var(--toss-white); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

/* BOWL CARDS */
.bowls-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.bowl-card { position: relative; background: transparent; text-align: left; }
.bowl-card__media {
  background: var(--toss-cabbage); aspect-ratio: 1/1;
  border-radius: 14px; overflow: hidden; margin-bottom: 22px; position: relative;
}
.bowl-card__media img { width: 100%; height: 100%; object-fit: cover; }
.bowl-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--toss-squash); color: var(--toss-white);
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 4px; z-index: 2;
}
.bowl-card__tag.tag-chef { background: var(--toss-almond); }
.bowl-card__tag.tag-vegan { background: var(--toss-kale); }
.bowl-card__title {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  letter-spacing: -0.04em; font-size: 28px; color: var(--toss-kale); margin: 0 0 12px;
}
.bowl-card__desc { font-size: 14px; opacity: 0.78; margin: 0 0 14px; line-height: 1.55; }
.bowl-card__meta { font-size: 14px; font-weight: 500; color: var(--toss-kale); margin: 0 0 18px; }
.bowl-card__cta {
  display: inline-block; padding: 10px 22px;
  border: 1.5px solid var(--toss-kale); border-radius: var(--radius-pill);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--toss-kale);
}
.bowl-card__cta:hover { background: var(--toss-kale); color: var(--toss-white); }
.menu-preview__cta { text-align: center; margin-top: 48px; }

/* REVIEWS POLAROID */
.reviews { background: var(--toss-beetroot); position: relative; overflow: hidden; }
.reviews__container { display: grid; gap: clamp(32px, 5vw, 56px); grid-template-columns: 1fr; position: relative; z-index: 2; }
@media (min-width: 900px) { .reviews__container { grid-template-columns: 1fr 1.6fr; align-items: center; } }
.reviews__lead .badge {
  display: inline-block; background: var(--toss-almond); color: var(--toss-white);
  font-size: 13px; padding: 8px 18px; border-radius: var(--radius-pill);
  margin-bottom: 20px; letter-spacing: 0.04em;
}
.reviews__lead h2 { font-size: clamp(40px, 5.5vw, 72px); color: var(--toss-kale); }
.polaroid-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.polaroid {
  background: var(--toss-white); padding: 18px; border-radius: 4px;
  box-shadow: 0 14px 28px rgba(15,86,61,0.08);
  font-size: 13px; line-height: 1.55; transform: rotate(var(--tilt, 0deg));
}
.polaroid:nth-child(1) { --tilt: -2deg; }
.polaroid:nth-child(2) { --tilt: 1.4deg; }
.polaroid:nth-child(3) { --tilt: -1deg; margin-top: 24px; }
.polaroid:nth-child(4) { --tilt: 2deg; margin-top: -8px; }
.polaroid__header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.polaroid__avatar {
  width: 26px; height: 26px; border-radius: 50%; background: var(--toss-cabbage);
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px;
}
.polaroid__name { font-weight: 500; color: var(--toss-kale); font-size: 13px; }
.polaroid__date { font-size: 11px; opacity: 0.6; margin-top: 10px; text-align: right; }

/* BYO */
.byo { background: var(--toss-sweet-potato); text-align: center; }
.byo__title { color: var(--toss-kale); margin-bottom: 48px; font-size: clamp(48px, 7vw, 84px); }
.byo-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); text-align: left; }
.byo-step {
  position: relative; border-radius: 18px; overflow: hidden;
  aspect-ratio: 3/4; background-size: cover; background-position: center;
  color: var(--toss-white); display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; isolation: isolate;
}
.byo-step::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.65) 100%);
}
.byo-step__tag {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,0.92); color: var(--toss-kale);
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 4px;
}
.byo-step__name {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  letter-spacing: -0.04em; font-size: 36px; margin: 0 0 8px;
}
.byo-step__price { font-family: var(--font-head); font-style: italic; font-size: 22px; margin-bottom: 12px; color: var(--toss-beetroot); }
.byo-step__desc { font-size: 13px; line-height: 1.5; opacity: 0.95; }
.byo__cta { margin-top: 40px; }

/* SAUCE MANDALA */
.sauces {
  background: var(--toss-cabbage); position: relative;
  background-image:
    radial-gradient(circle at 25% 35%, rgba(0,0,0,0.025) 0, transparent 40%),
    radial-gradient(circle at 70% 65%, rgba(0,0,0,0.025) 0, transparent 40%);
}
.sauce-mandala { position: relative; max-width: 980px; margin: 0 auto; aspect-ratio: 1.4/1; }
.sauce-mandala__center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  text-align: center; max-width: 320px; z-index: 2;
}
.sauce-mandala__title { color: var(--toss-kale); font-size: clamp(28px, 3.8vw, 44px); margin-bottom: 18px; }
.sauce-mandala__points { font-size: 13px; margin: 0 0 22px; text-align: left; }
.sauce-mandala__points li { padding: 4px 0; }
.sauce-mandala__points li::before { content: '★ '; color: var(--toss-squash); margin-right: 6px; }
.sauce-cup { position: absolute; text-align: center; }
/* Force a perfect circle: aspect-ratio 1/1 with object-fit cover means the
   image always crops to a clean circle even if the global `img { height:auto }`
   reset or a narrow container tries to shrink it out of square. */
.sauce-cup img {
  width: 140px; aspect-ratio: 1 / 1; height: auto;
  border-radius: 50%; object-fit: cover;
  background: var(--toss-cabbage); margin-bottom: 8px;
}
.sauce-cup__name { font-size: 14px; color: var(--toss-kale); font-family: var(--font-head); font-style: italic; }
.sauce-cup--1 { top: -2%;  left: 40%; }
.sauce-cup--2 { top: 10%;  left: 8%; }
.sauce-cup--3 { top: 8%;   right: 8%; }
.sauce-cup--4 { top: 48%;  left: 0%; }
.sauce-cup--5 { top: 50%;  right: 0%; }
.sauce-cup--6 { bottom: 4%; left: 22%; }
.sauce-cup--7 { bottom: 4%; right: 22%; }
@media (max-width: 800px) {
  .sauce-mandala { aspect-ratio: auto; }
  .sauce-mandala__center { position: static; transform: none; max-width: none; margin: 0 0 28px; }
  .sauce-cup { position: static; display: inline-block; margin: 8px; }
  .sauce-cup img { width: 110px; height: auto; }
}

/* FOOTER */
.site-footer { background: var(--toss-kale); color: var(--toss-white); padding: clamp(48px, 7vw, 88px) 0 32px; }
.site-footer a { color: var(--toss-white); }
.footer-grid { display: grid; gap: clamp(32px, 5vw, 64px); grid-template-columns: 0.9fr 1fr 1.2fr; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand__lockup { display: block; width: 220px; }
.footer-brand__lockup img { width: 100%; }
.footer-col h4 {
  font-family: var(--font-body); font-style: normal;
  font-size: 14px; font-weight: 500; margin-bottom: 14px; color: var(--toss-beetroot);
}
.footer-contact { font-size: 14px; line-height: 2.1; }
.footer-contact a { text-decoration: underline; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--toss-white); color: var(--toss-kale);
  border-radius: 50%; font-weight: 600; font-size: 14px;
}
.footer-stores { font-size: 14px; line-height: 1.6; }
.footer-store { margin-bottom: 16px; display: flex; gap: 14px; align-items: flex-start; }
.footer-store__pill {
  background: var(--toss-squash); color: var(--toss-white);
  font-size: 12px; padding: 4px 12px; border-radius: 4px;
  font-weight: 500; white-space: nowrap; margin-top: 2px;
}
.footer-store__pill--hcm { background: var(--toss-sweet-potato); color: var(--toss-kale); }
.footer-hours { margin-top: 14px; font-size: 14px; }
.footer-hours strong { font-weight: 500; }
.footer-bottom {
  margin-top: clamp(40px, 6vw, 64px); padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 12px; opacity: 0.75;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* MOBILE NAV */
@media (max-width: 900px) {
  /* Collapse browse + utility links into the hamburger drawer; logo stays centered. */
  .site-browse { display: none; }
  .site-header__right .is-highlight,
  .site-header__right .btn-pink { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--toss-kale); padding: 20px var(--gutter);
    flex-direction: column; gap: 18px;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .site-nav.is-open { display: flex; }
  .site-header__inner { position: relative; }
}

/* =========================================================================
   HOME-PAGE CALCULATOR TEASER
   (the .calc-hero block was removed 2026-05-22 — the Tính Calo nav now goes
   straight to /calculator/, no wrapper page.)
   ========================================================================= */

.calc-teaser {
  background: var(--toss-beetroot);
  padding: clamp(48px, 6vw, 88px) 0;
}
.calc-teaser__inner {
  max-width: 880px; margin: 0 auto;
  display: grid; gap: 24px; align-items: center;
  grid-template-columns: 1fr auto; text-align: left;
}
@media (max-width: 720px) {
  .calc-teaser__inner { grid-template-columns: 1fr; text-align: center; }
}
.calc-teaser__eyebrow {
  display: inline-block; background: var(--toss-squash); color: var(--toss-white);
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px; margin-bottom: 12px;
  font-weight: 500;
}
.calc-teaser__title {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  letter-spacing: -0.04em; color: var(--toss-kale);
  font-size: clamp(32px, 4.5vw, 48px); margin: 0 0 10px; line-height: 1.1;
}
.calc-teaser__sub { font-size: 15px; line-height: 1.55; opacity: 0.82; margin: 0; }

/* =========================================================================
   INNER-PAGE COMPONENTS
   ========================================================================= */

/* ----- Section heads (eyebrow + headline + sub) ----- */
.section-head { text-align: center; margin-bottom: 48px; }
.section-head__eyebrow {
  display: inline-block; font-family: var(--font-body);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--toss-almond); margin-bottom: 14px;
}
.section-head__title {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  letter-spacing: -0.05em; color: var(--toss-kale);
  font-size: clamp(36px, 5.5vw, 64px); margin: 0 0 16px;
}
.section-head__sub {
  font-size: 16px; line-height: 1.6; opacity: 0.78;
  max-width: 64ch; margin: 0 auto;
}

/* ----- Generic card (used on menu/about/news/careers) ----- */
.card-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card { background: transparent; text-align: left; display: flex; flex-direction: column; }
.card__media {
  background: var(--toss-cabbage); aspect-ratio: 1/1;
  border-radius: 14px; overflow: hidden; position: relative;
  margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--toss-kale); opacity: 1; font-style: italic;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__media:empty::before, .card__media:not(:has(img)):not(:has(*))::before { content: "Coming soon"; opacity: 0.45; }
.card__body { padding: 0; }
.card__title {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  letter-spacing: -0.04em; font-size: 26px; color: var(--toss-kale);
  margin: 0 0 8px;
}
.card__desc { font-size: 14px; line-height: 1.55; opacity: 0.78; margin: 0 0 12px; }
.card__price {
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--toss-kale);
  margin: 0 0 10px; font-weight: 500;
}
.card__cta { font-size: 13px; }
.card__cta a {
  color: var(--toss-kale); border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* ----- Page hero (simple, used on inner pages with text-only) ----- */
.page-hero {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--toss-cabbage); text-align: center;
}
.page-hero__eyebrow {
  display: inline-block; font-family: var(--font-body);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--toss-almond); margin-bottom: 18px;
}
.page-hero__title {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  letter-spacing: -0.05em; color: var(--toss-kale);
  font-size: clamp(48px, 7vw, 88px); margin: 0 0 18px; line-height: 1;
}
.page-hero__sub {
  font-size: 17px; line-height: 1.6;
  max-width: 56ch; margin: 0 auto; opacity: 0.82;
}

/* =========================================================================
   MENU PAGE
   ========================================================================= */

/* Green leaf hero band */
.menu-banner {
  background: var(--toss-kale-deep);
  background-image:
    linear-gradient(180deg, rgba(15,86,61,0.65) 0%, rgba(15,86,61,0.5) 100%),
    url('images/hero/menu-hero.webp');
  background-size: cover; background-position: center;
  color: var(--toss-white); text-align: center;
  padding: clamp(56px, 8vw, 96px) 0;
}
.menu-banner__text {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  letter-spacing: -0.02em; font-size: clamp(20px, 2.6vw, 28px);
  max-width: 720px; margin: 0 auto; line-height: 1.5;
}

/* Section titles in the marketing menu mockup are red-brown, left-aligned */
.menu-section { padding: clamp(48px, 6vw, 72px) 0; background: var(--toss-cabbage); }
.menu-section__title {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  letter-spacing: -0.05em; color: var(--toss-almond);
  font-size: clamp(40px, 5vw, 56px); margin: 0 0 32px;
}
.menu-section + .menu-section { padding-top: 0; }
.menu-section--sweet { background: var(--toss-sweet-potato); }

/* Bowl/Wrap pill toggles */
.menu-subtabs { display: flex; gap: 8px; margin-bottom: 36px; }
.menu-subtab {
  background: transparent; border: 1.5px solid var(--toss-kale);
  color: var(--toss-kale); padding: 8px 22px;
  border-radius: var(--radius-pill); font-size: 14px; cursor: pointer;
}
.menu-subtab[aria-selected="true"] { background: var(--toss-kale); color: var(--toss-white); }

/* Chef-menu featured grid (TA DINING tag).
   Cap card width and centre the grid so the section stays balanced whether
   it holds one or two featured cards (no full-width ballooning on a lone card). */
.chef-grid {
  display: grid; gap: 32px; justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 460px));
}
.chef-card { display: flex; flex-direction: column; }
.chef-card__media {
  position: relative; aspect-ratio: 1/1; border-radius: 14px;
  overflow: hidden; margin-bottom: 18px; background: var(--toss-cabbage);
}
.chef-card__media img { width: 100%; height: 100%; object-fit: cover; }
.chef-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--toss-almond); color: var(--toss-white);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px; z-index: 2;
}

/* The "Ăn sẵn / Ăn uống / Ăn chơi" sections share this grid.
   auto-fill (not auto-fit) keeps empty tracks so a sparse category like
   "Ăn chơi" (2 items) renders cards at the same size as the fuller
   sections instead of stretching them to fill the row. */
.menu-grid {
  display: grid; gap: 36px 28px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.menu-item__media {
  position: relative; aspect-ratio: 1/1; border-radius: 14px;
  overflow: hidden; margin-bottom: 18px; background: var(--toss-cabbage);
}
.menu-item__media img { width: 100%; height: 100%; object-fit: cover; }
.menu-item__media .tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 3px; z-index: 2; font-weight: 500;
  background: var(--toss-squash); color: var(--toss-white);
}
.menu-item__media .tag--vegan { background: var(--toss-kale); }
.menu-item__media .tag--chef { background: var(--toss-almond); }
.menu-item__name {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  letter-spacing: -0.04em; font-size: 24px;
  color: var(--toss-kale); margin: 0 0 8px;
}
.menu-item__desc { font-size: 13px; line-height: 1.55; opacity: 0.78; margin: 0 0 10px; }
.menu-item__meta {
  font-family: var(--font-body); font-size: 12px;
  letter-spacing: 0.06em; color: var(--toss-kale); opacity: 0.85;
}

/* Drinks variant — white tile background */
.menu-grid--drinks .menu-item__media { background: var(--toss-white); }
.menu-grid--drinks .menu-item__media img { object-fit: contain; padding: 14px; }

/* =========================================================================
   ABOUT PAGE
   ========================================================================= */

/* Photo strip hero — band of small photos */
.about-banner {
  background: var(--toss-kale); color: var(--toss-white);
  padding-bottom: clamp(48px, 7vw, 80px);
}
.about-banner__strip {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px;
  height: clamp(160px, 22vw, 260px); overflow: hidden;
}
.about-banner__strip img { width: 100%; height: 100%; object-fit: cover; }
.about-banner__copy {
  max-width: 720px; margin: clamp(40px, 5vw, 56px) auto 0;
  padding: 0 var(--gutter); text-align: center;
}
.about-banner__eyebrow {
  display: inline-block; font-family: var(--font-head);
  font-style: italic; font-size: 28px; color: var(--toss-beetroot);
  margin-bottom: 14px;
}
.about-banner__title {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  letter-spacing: -0.05em; font-size: clamp(36px, 5vw, 56px); margin: 0 0 18px;
  color: var(--toss-white); line-height: 1.1;
}
.about-banner__sub { font-size: 16px; opacity: 0.88; }

/* Store-locations row (2 cards with orange tag) */
.about-stores { background: var(--toss-cabbage); padding: clamp(56px, 7vw, 88px) 0; }
.about-stores__grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.store-card {
  background: var(--toss-white); border-radius: 14px; overflow: hidden;
  box-shadow: 0 12px 28px rgba(15,86,61,0.06);
}
.store-card__media { aspect-ratio: 16/10; overflow: hidden; }
.store-card__media img { width: 100%; height: 100%; object-fit: cover; }
.store-card__body { padding: 22px 24px 26px; position: relative; }
.store-card__tag {
  display: inline-block; background: var(--toss-squash);
  color: var(--toss-white); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 3px;
  margin-bottom: 12px;
}
.store-card__name {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  letter-spacing: -0.04em; font-size: 24px; color: var(--toss-kale);
  margin: 0 0 8px;
}
.store-card__addr { font-size: 14px; line-height: 1.5; opacity: 0.78; }

/* Alternating feature row (photo + colored panel + heading) */
.feature-rows { background: var(--toss-cabbage); }
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  min-height: clamp(280px, 32vw, 420px);
}
.feature-row > * { display: flex; align-items: center; justify-content: center; padding: clamp(28px, 4vw, 56px); }
.feature-row__media { padding: 0; }
.feature-row__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-row__copy {
  flex-direction: column; align-items: flex-start; text-align: left; gap: 16px;
}
.feature-row__tag {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 3px;
  background: var(--toss-squash); color: var(--toss-white);
  display: inline-block;
}
.feature-row__title {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  letter-spacing: -0.04em; font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15; margin: 0;
}
.feature-row__body { font-size: 15px; line-height: 1.6; opacity: 0.85; max-width: 44ch; }

/* Theme colors for feature panels */
.feature-row--squash .feature-row__copy { background: var(--toss-squash); color: var(--toss-white); }
.feature-row--squash .feature-row__tag { background: var(--toss-white); color: var(--toss-squash); }
.feature-row--squash .feature-row__title { color: var(--toss-white); }
.feature-row--squash .feature-row__body { color: var(--toss-white); opacity: 0.92; }

.feature-row--almond .feature-row__copy { background: var(--toss-almond); color: var(--toss-white); }
.feature-row--almond .feature-row__tag { background: var(--toss-white); color: var(--toss-almond); }
.feature-row--almond .feature-row__title { color: var(--toss-white); }
.feature-row--almond .feature-row__body { color: var(--toss-white); opacity: 0.92; }

.feature-row--cabbage .feature-row__copy { background: var(--toss-cabbage); color: var(--toss-black-rice); }
.feature-row--cabbage .feature-row__tag { background: var(--toss-kale); color: var(--toss-white); }
.feature-row--cabbage .feature-row__title { color: var(--toss-kale); }

.feature-row--beetroot .feature-row__copy { background: var(--toss-beetroot); color: var(--toss-kale); }
.feature-row--beetroot .feature-row__tag { background: var(--toss-kale); color: var(--toss-white); }
.feature-row--beetroot .feature-row__title { color: var(--toss-kale); }

.feature-row.is-flipped { direction: rtl; }
.feature-row.is-flipped > * { direction: ltr; }

@media (max-width: 800px) {
  .feature-row, .feature-row.is-flipped { grid-template-columns: 1fr; direction: ltr; }
  .feature-row__media { aspect-ratio: 16/10; }
}

/* =========================================================================
   NEWS PAGE
   ========================================================================= */

.news-feature {
  background: var(--toss-squash); color: var(--toss-white);
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
}
.news-feature__media { aspect-ratio: 16/11; overflow: hidden; }
.news-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.news-feature__copy {
  padding: clamp(32px, 4vw, 64px);
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.news-feature__tag {
  display: inline-block; background: var(--toss-white); color: var(--toss-squash);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 3px; font-weight: 500; align-self: flex-start;
}
.news-feature__title {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  letter-spacing: -0.04em; font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.15; margin: 0;
}
.news-feature__body { font-size: 15px; line-height: 1.6; opacity: 0.95; }
@media (max-width: 800px) { .news-feature { grid-template-columns: 1fr; } }

/* News toolbar (tabs + search) */
.news-toolbar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
  padding: 32px 0; margin-bottom: 8px;
}
.news-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.news-tab {
  background: transparent; border: 1.5px solid var(--toss-kale);
  color: var(--toss-kale); padding: 8px 18px;
  border-radius: var(--radius-pill); font-size: 13px; cursor: pointer;
}
.news-tab[aria-selected="true"] { background: var(--toss-kale); color: var(--toss-white); }
.news-search {
  margin-left: auto; position: relative;
}
.news-search input {
  font: inherit; padding: 10px 14px 10px 36px; min-width: 220px;
  border: 1px solid rgba(15,86,61,0.25); border-radius: var(--radius-pill);
  background: var(--toss-white); color: var(--toss-kale);
}
.news-search::before {
  content: "🔍"; position: absolute; top: 50%; left: 12px;
  transform: translateY(-50%); opacity: 0.6;
}

/* News grid */
.news-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.news-card { display: flex; flex-direction: column; }
.news-card__media {
  aspect-ratio: 4/3; border-radius: 12px; overflow: hidden;
  margin-bottom: 16px; background: var(--toss-cabbage);
}
.news-card__media img { width: 100%; height: 100%; object-fit: cover; }
.news-card__meta {
  display: flex; gap: 12px; align-items: center; margin-bottom: 8px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
}
.news-card__tag {
  background: var(--toss-kale); color: var(--toss-white);
  padding: 4px 10px; border-radius: 3px; font-weight: 500;
}
.news-card__tag--promo { background: var(--toss-squash); }
.news-card__tag--event { background: var(--toss-almond); }
.news-card__tag--notice { background: var(--toss-kale); }
.news-card__date { opacity: 0.55; font-weight: 500; }
.news-card__title {
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  line-height: 1.45; margin: 0 0 8px; color: var(--toss-kale); font-style: normal;
  letter-spacing: 0;
}
.news-card__excerpt { font-size: 13px; line-height: 1.55; opacity: 0.72; margin: 0 0 12px; }
.news-card__link {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--toss-kale); border-bottom: 1px solid currentColor;
  padding-bottom: 2px; align-self: flex-start;
}

/* Pagination dots */
.pagination {
  display: flex; gap: 10px; justify-content: center; align-items: center;
  margin-top: 48px;
}
.pagination__btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: transparent; border: 1.5px solid rgba(15,86,61,0.3);
  color: var(--toss-kale); font-size: 13px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.18s ease;
}
.pagination__btn:hover { border-color: var(--toss-kale); }
.pagination__btn.is-active { background: var(--toss-kale); color: var(--toss-white); border-color: var(--toss-kale); }

/* =========================================================================
   CAREERS PAGE
   ========================================================================= */

.careers-collage {
  display: grid; gap: 6px;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: clamp(280px, 38vw, 460px);
}
.careers-collage > div {
  overflow: hidden; background: var(--toss-cabbage);
}
.careers-collage > div img { width: 100%; height: 100%; object-fit: cover; }
.careers-collage > div:nth-child(1) { grid-row: span 2; }
.careers-collage > div:nth-child(4) { grid-row: span 2; }
@media (max-width: 800px) {
  .careers-collage { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .careers-collage > div { aspect-ratio: 1/1; }
  .careers-collage > div:nth-child(1),
  .careers-collage > div:nth-child(4) { grid-row: auto; }
}

/* Careers section header (centered Fraunces) */
.careers-section { padding: clamp(48px, 6vw, 80px) 0; background: var(--toss-cabbage); }
.careers-section__title {
  text-align: center; font-family: var(--font-head); font-style: italic;
  font-weight: 300; letter-spacing: -0.04em;
  font-size: clamp(36px, 4.5vw, 56px); color: var(--toss-kale);
  margin: 0 0 28px;
}
.careers-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.careers-tab {
  background: var(--toss-white); border: 1.5px solid var(--toss-kale);
  color: var(--toss-kale); padding: 8px 18px;
  border-radius: var(--radius-pill); font-size: 13px; cursor: pointer;
}
.careers-tab[aria-selected="true"] { background: var(--toss-kale); color: var(--toss-white); }

/* Job list rows */
.jobs-list { max-width: 980px; margin: 0 auto; }
.job-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr auto;
  gap: 20px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid rgba(15,86,61,0.12);
}
.job-row__title {
  font-family: var(--font-body); font-size: 18px; font-weight: 500;
  color: var(--toss-kale); letter-spacing: 0.04em;
}
.job-row__meta {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  font-size: 12px; opacity: 0.72;
}
.job-row__meta-item { display: inline-flex; align-items: center; gap: 4px; }
.job-row__salary {
  font-size: 13px; color: var(--toss-kale); font-weight: 500;
}
.btn-apply {
  background: var(--toss-squash); color: var(--toss-white);
  border: 0; padding: 10px 20px; border-radius: var(--radius-pill);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; cursor: pointer;
}
.btn-apply:hover { background: var(--toss-almond); }
@media (max-width: 700px) {
  .job-row { grid-template-columns: 1fr; gap: 8px; }
  .btn-apply { justify-self: flex-start; margin-top: 6px; }
}


/* =========================================================================
   TCD MARKETING PACKAGE UPDATE — 2026-07-18
   Nav classic (mockup TCD) · popup · photo polaroids · about rebuild ·
   careers grid image. Sweetgreen nav (TSK-125) parked for future upgrade.
   ========================================================================= */

/* ----- Header: classic mockup layout (logo LEFT · links · CTA right) ----- */
.site-header--classic .site-header__inner {
  grid-template-columns: auto 1fr auto;
}
.site-header--classic .site-header__logo { justify-self: start; }
.site-header--classic .site-browse {
  justify-self: end;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 13.5px; letter-spacing: 0.12em; text-transform: uppercase;
}
.site-header--classic .site-browse a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--toss-white);
}
@media (max-width: 1080px) {
  .site-header--classic .site-browse { display: none; }
  .site-header--classic .menu-toggle { display: block; }
}

/* ----- Bowl-card white tile (drinks & snacks with packshot images) ----- */
.bowl-card__media--tile { background: var(--toss-white); }
.bowl-card__media--tile img { object-fit: contain; padding: 18px; }

/* ----- Photo polaroids (Feedback 1/2 from TCD package) ----- */
.polaroid--photo { background: transparent; box-shadow: none; padding: 0; }
.polaroid--photo img { width: 100%; height: auto; display: block; }

/* ----- The Tossful Club KOL posters (feedback section, 2026-07-20) ----- */
.polaroid--club { align-self: start; }
.polaroid--club img { border-radius: 14px; box-shadow: 0 12px 34px rgba(10, 62, 44, 0.18); }

/* ----- Poster-style menu media (Their vs Our popcorn) — show full artwork ----- */
.menu-item__media--poster { background: var(--toss-cabbage); }
.menu-item__media--poster img { object-fit: contain; }

/* ----- Popup (Soft Opening — per TCD package) ----- */
.popup { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; }
.popup[hidden] { display: none; }
.popup__backdrop { position: absolute; inset: 0; background: rgba(10, 62, 44, 0.55); }
.popup__dialog {
  position: relative; max-width: min(720px, 92vw); margin: 0 16px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
.popup__dialog img { width: 100%; height: auto; display: block; }
.popup__close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,0.92); color: var(--toss-kale);
  font-size: 16px; cursor: pointer; line-height: 1;
}
.popup__close:hover { background: var(--toss-white); }

/* ----- About: full-bleed hero (Về Tossful a) ----- */
.about-hero {
  position: relative; color: var(--toss-white);
  background:
    linear-gradient(180deg, rgba(10,62,44,0.15) 30%, rgba(10,62,44,0.55) 100%),
    url('images/about/about-hero.webp') center / cover no-repeat;
  min-height: clamp(320px, 42vw, 520px);
  display: flex; align-items: flex-end;
}
.about-hero__inner { width: 100%; padding-top: 48px; padding-bottom: clamp(32px, 4vw, 56px); }
.about-hero__title {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  letter-spacing: -0.04em; font-size: clamp(44px, 6vw, 72px);
  margin: 0 0 10px; line-height: 1.05;
}
.about-hero__sub { font-size: clamp(15px, 1.6vw, 18px); opacity: 0.94; margin: 0; }

/* ----- About: timeline 09.2024 → 04.2026 ----- */
.about-timeline { background: var(--toss-cabbage); padding: clamp(56px, 7vw, 96px) 0; }
.timeline-item {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(24px, 4vw, 64px);
  align-items: center; padding: clamp(24px, 3vw, 40px) 0;
}
.timeline-item.is-flipped .timeline-item__copy { order: 2; }
.timeline-item.is-flipped .timeline-item__media { order: 1; }
.timeline-item__date {
  display: inline-block; background: var(--toss-squash); color: var(--toss-white);
  font-size: 15px; letter-spacing: 0.06em; padding: 4px 14px; margin-bottom: 14px;
}
.timeline-item__title {
  font-family: var(--font-head); font-style: italic; font-weight: 300;
  letter-spacing: -0.03em; color: var(--toss-kale);
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.15; margin: 0;
}
.timeline-item__media img { width: 100%; height: auto; display: block; }
@media (max-width: 760px) {
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-item.is-flipped .timeline-item__copy { order: 1; }
  .timeline-item.is-flipped .timeline-item__media { order: 2; }
}

/* ----- About: feature-row refinements (TCD sections) ----- */
.feature-row__eyebrow {
  display: block; font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; opacity: 0.85; margin-bottom: 14px;
}
.feature-row__tag--green { background: var(--toss-kale); color: var(--toss-white); }
.feature-row__tag--pink { background: var(--toss-beetroot); color: var(--toss-almond); }
.feature-row__tag--almond { background: var(--toss-almond); color: var(--toss-white); }
.feature-row .feature-row__tag { display: inline-block; transform: translateY(-4px); }
.feature-row--bg-ket-hop .feature-row__copy {
  background: var(--toss-squash) url('images/about/bg-ket-hop.webp') center / cover no-repeat;
}
.feature-row--bg-cau-chuyen .feature-row__copy {
  background: var(--toss-almond) url('images/about/bg-cau-chuyen.webp') center / cover no-repeat;
}
.feature-row--bg-ben-vung .feature-row__copy {
  background: var(--toss-beetroot) url('images/about/bg-ben-vung.webp') center / cover no-repeat;
}
.feature-row--cream .feature-row__copy {
  background: #F6F3E8 url('images/about/bg-lam-moi.webp') center / cover no-repeat;
  color: var(--toss-black-rice);
}
.feature-row--cream .feature-row__title { color: var(--toss-kale); }
.feature-row--beetroot .feature-row__title { color: var(--toss-almond); }
.feature-row--beetroot .feature-row__copy { color: var(--toss-almond); }

/* ----- About: community band (XÂY DỰNG) ----- */
.about-community {
  background: var(--toss-cabbage); text-align: center;
  padding: clamp(56px, 7vw, 96px) var(--gutter);
  position: relative; overflow: hidden;
}
.about-community__copy { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.about-community .feature-row__title { color: var(--toss-kale); }
.about-community .feature-row__body { margin: 16px auto 0; max-width: 52ch; }
.about-community__veg {
  position: absolute; width: clamp(70px, 9vw, 130px); height: auto; opacity: 0.95;
}
.about-community__veg--left { left: clamp(8px, 4vw, 72px); top: 50%; transform: translateY(-50%); }
.about-community__veg--right { right: clamp(8px, 4vw, 72px); top: 50%; transform: translateY(-50%); }
@media (max-width: 700px) { .about-community__veg { display: none; } }

/* ----- Careers: single grid image hero (Tuyển dụng a) ----- */
.careers-collage--single { display: block; height: auto; }
.careers-collage--single img { width: 100%; height: auto; display: block; }


/* =========================================================================
   DIFF-REVIEW ROUND 2 — 2026-07-19 (Hieu duyệt all #1–#12)
   ========================================================================= */

/* #1 Home card titles: Questrial bold (mockup) — menu page giữ Fraunces */
.bowl-card__title {
  font-family: var(--font-body); font-style: normal; font-weight: 700;
  letter-spacing: 0.01em; font-size: 22px;
}

/* #2 Home tabs section: nền trắng theo mockup */
.menu-preview { background: var(--toss-white); }

/* #3 Hero service titles: hồng nhạt theo mockup */
.hero__service-title { color: var(--toss-beetroot); }

/* #4 Feedback photo polaroids: nghiêng + xen kẽ */
.polaroid--photo-1 { --tilt: -6deg; margin-top: -6px; }
.polaroid--photo-2 { --tilt: 5deg; margin-top: 18px; }

/* #5 Sauce section: nền giấy texture */
.sauces {
  background: #F6F3E8 url('images/about/bg-lam-moi.webp') center / cover no-repeat;
}

/* #6 Menu items: đường kẻ mảnh giữa mô tả và kcal */
.menu-item__meta::before {
  content: ''; display: block; width: 150px; max-width: 60%;
  border-top: 1px solid var(--toss-kale); opacity: 0.5; margin: 2px 0 8px;
}

/* #7 Careers tab active: đỏ đô theo mockup */
.careers-tab[aria-selected="true"] { background: var(--toss-almond) !important; color: var(--toss-white); }

/* #8 Careers meta icons */
.job-ico {
  display: inline-flex; width: 18px; height: 18px; vertical-align: -3px;
  margin-right: 6px; color: var(--toss-kale);
}
.job-ico svg { width: 100%; height: 100%; }

/* #11 About timeline connector */
.about-timeline .container { position: relative; }
.timeline-connector {
  position: absolute; left: 50%; top: 12%; height: 74%; width: 120px;
  transform: translateX(-50%); z-index: 0; pointer-events: none; color: var(--toss-kale); opacity: 0.55;
}
.timeline-item { position: relative; z-index: 1; }
@media (max-width: 760px) { .timeline-connector { display: none; } }

/* #12 News hero carousel */
.news-feature { position: relative; }
.news-feature__slide { display: none; }
.news-feature__slide.is-active { display: contents; }
.news-feature__dots {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px; z-index: 3;
}
.news-feature__dot {
  width: 10px; height: 10px; border-radius: 50%; border: 0; padding: 0;
  background: rgba(255,255,255,0.45); cursor: pointer;
}
.news-feature__dot.is-active { background: var(--toss-white); }


/* =========================================================================
   ROUND 3 — MOCKUP FIDELITY PASS (2026-07-19, Hieu review trên live)
   1) Typography scale theo đúng khổ thiết kế 2000px của TCD (vw-based,
      clamp giữ mobile an toàn) — trước đây font cố định nên màn to bị nhỏ
      hơn mockup.
   2) Section sốt: bỏ crop tròn (hiện nguyên hũ + bóng đổ như mockup),
      nền giấy trắng, hũ to đúng tỷ lệ.
   3) Careers/Menu: nền sáng như mockup, icon tròn đặc, separator đậm.
   ========================================================================= */

/* ---------- 1. Typography scale (mockup px / 2000 * 100vw) ---------- */
body { font-size: clamp(14px, 0.9vw, 18px); }
.announce__track { font-size: clamp(13px, 0.95vw, 19px); }
.site-browse, .site-nav { font-size: clamp(12px, 0.8vw, 16px); }
.site-header--classic .site-browse { font-size: clamp(12px, 0.75vw, 15px); }

.hero__eyebrow { font-size: clamp(11px, 0.8vw, 16px); }
.hero__service-title { font-size: clamp(34px, 3.2vw, 64px); }
.hero__service-text { font-size: clamp(13px, 0.9vw, 18px); max-width: 42ch; }
.hero__tag { font-size: clamp(13px, 0.9vw, 18px); }

.tab-headline { font-size: clamp(30px, 3vw, 60px); }
.subtab-btn { font-size: clamp(13px, 0.85vw, 17px); padding: 8px 22px; }
.bowl-card__title { font-size: clamp(18px, 1.3vw, 26px); }
.bowl-card__desc { font-size: clamp(13px, 0.85vw, 17px); }
.bowl-card__meta { font-size: clamp(12px, 0.8vw, 16px); }
.bowl-card__cta { font-size: clamp(11px, 0.75vw, 15px); }

.reviews__lead h2 { font-size: clamp(40px, 5.2vw, 104px); }
.reviews__lead .badge { font-size: clamp(12px, 0.85vw, 17px); }
.polaroid { font-size: clamp(12px, 0.8vw, 16px); }

.byo__title { font-size: clamp(48px, 6vw, 120px); }
.byo-step__name { font-size: clamp(24px, 2.2vw, 44px); }
.byo-step__price { font-size: clamp(16px, 1.1vw, 22px); }
.byo-step__desc { font-size: clamp(12px, 0.8vw, 16px); }

.calc-teaser__title { font-size: clamp(26px, 2.2vw, 44px); }
.calc-teaser__sub { font-size: clamp(13px, 0.85vw, 17px); }

.sauce-mandala__title { font-size: clamp(30px, 2.6vw, 52px); }
.sauce-mandala__points { font-size: clamp(12px, 0.85vw, 17px); }
.sauce-cup__name { font-size: clamp(14px, 1.1vw, 22px); }

.menu-banner__text { font-size: clamp(20px, 1.6vw, 32px); max-width: 52ch; }
.menu-section__title { font-size: clamp(36px, 4.4vw, 88px); }
.menu-item__name { font-size: clamp(22px, 1.7vw, 34px); }
.menu-item__desc { font-size: clamp(13px, 0.95vw, 19px); }
.menu-item__meta { font-size: clamp(12px, 0.9vw, 18px); }
.menu-subtab { font-size: clamp(13px, 0.85vw, 17px); padding: 8px 24px; }
.chef-card__tag, .menu-item__media .tag, .bowl-card__tag { font-size: clamp(10px, 0.7vw, 14px); }

.about-hero__title { font-size: clamp(44px, 4.6vw, 92px); }
.about-hero__sub { font-size: clamp(15px, 1.1vw, 22px); }
.timeline-item__title { font-size: clamp(28px, 2.4vw, 48px); }
.timeline-item__date { font-size: clamp(13px, 1vw, 20px); padding: 5px 16px; }
.feature-row__title { font-size: clamp(28px, 2.2vw, 44px); }
.feature-row__body { font-size: clamp(13px, 0.9vw, 18px); max-width: 48ch; }
.feature-row__eyebrow { font-size: clamp(11px, 0.7vw, 14px); }

.news-feature__title { font-size: clamp(28px, 2.8vw, 56px); }
.news-feature__body { font-size: clamp(13px, 0.9vw, 18px); }
.news-card__title { font-size: clamp(16px, 1.15vw, 23px); }
.news-card__excerpt { font-size: clamp(13px, 0.85vw, 17px); }
.news-tab { font-size: clamp(12px, 0.85vw, 17px); }

.careers-section__title { font-size: clamp(32px, 3vw, 60px); }
.careers-tab { font-size: clamp(12px, 0.9vw, 18px); padding: 8px 20px; }
.job-row__title { font-size: clamp(18px, 2vw, 40px); letter-spacing: 0.02em; }
.job-row__meta-item, .job-row__salary { font-size: clamp(12px, 0.85vw, 17px); }
.btn-apply { font-size: clamp(11px, 0.8vw, 16px); padding: 10px 26px; }

.footer-col h4 { font-size: clamp(13px, 0.85vw, 17px); }
.footer-contact, .footer-stores, .footer-hours { font-size: clamp(13px, 0.8vw, 16px); }
.footer-bottom { font-size: clamp(11px, 0.7vw, 14px); }

/* ---------- 2. Section sốt: nguyên hũ, nền giấy trắng ---------- */
.sauces {
  background-color: #FBFAF6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.53 0 0 0 0 0.48 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}
.sauce-mandala { max-width: 1560px; aspect-ratio: 1.35 / 1; }
.sauce-mandala__center { max-width: clamp(320px, 34vw, 560px); }
.sauce-cup img {
  width: clamp(150px, 16vw, 330px); aspect-ratio: auto; height: auto;
  border-radius: 0; object-fit: contain; background: transparent; margin-bottom: 4px;
}
.sauce-cup--1 { top: -3%;  left: 41%; }
.sauce-cup--2 { top: 9%;   left: 9%; }
.sauce-cup--3 { top: 9%;   right: 8%; }
.sauce-cup--4 { top: 44%;  left: 2%; }
.sauce-cup--5 { top: 46%;  right: 2%; }
.sauce-cup--6 { bottom: 2%; left: 23%; }
.sauce-cup--7 { bottom: 2%; right: 23%; }
@media (max-width: 800px) {
  .sauce-cup img { width: 120px; }
}

/* ---------- 3. Nền sáng + chi tiết theo mockup ---------- */
.menu-section { background: #FAF9F3; }
.menu-banner {
  background-image:
    linear-gradient(180deg, rgba(10,62,44,0.82) 0%, rgba(10,62,44,0.74) 100%),
    url('images/hero/menu-hero.webp');
}
.careers-section { background: #FAF9F3; }
.job-row { border-bottom: 1.5px solid rgba(15,86,61,0.5); padding-bottom: 18px; }
.job-ico {
  width: clamp(18px, 1.1vw, 22px); height: clamp(18px, 1.1vw, 22px);
  background: var(--toss-kale); border-radius: 50%; color: var(--toss-white);
  padding: 3px; box-sizing: border-box;
}
.timeline-connector path { stroke-dasharray: none; stroke-width: 3; }
.timeline-connector { opacity: 0.85; }


/* Round 3b — content width theo khổ mockup (1740/2000 = 87vw) + sốt hết đè */
:root { --max-w: min(1740px, 92vw); }
.sauce-mandala { max-width: 1500px; aspect-ratio: 1.25 / 1; }
.sauce-mandala__center { max-width: clamp(320px, 30vw, 500px); }
.sauce-cup img { width: clamp(140px, 14.5vw, 300px); }
.sauce-cup--1 { top: -2%;  left: 50%; transform: translateX(-50%); }
.sauce-cup--2 { top: 7%;   left: 5%; }
.sauce-cup--3 { top: 7%;   right: 4%; }
.sauce-cup--4 { top: 42%;  left: 0; }
.sauce-cup--5 { top: 44%;  right: 0; }
.sauce-cup--6 { bottom: 3%; left: 19%; }
.sauce-cup--7 { bottom: 3%; right: 20%; }


/* =========================================================================
   SPRINT TOS-218 — 2026-07-19 (mobile review Hieu)
   #1 Sốt: layout mobile riêng (không absolute) · #5 timeline connector
   bản dọc trên mobile.
   ========================================================================= */

/* #1 — Sauce section mobile: center text lên đầu, hũ thành grid 2 cột */
@media (max-width: 800px) {
  .sauce-mandala {
    aspect-ratio: auto; max-width: none;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 18px 10px; padding-bottom: 8px;
  }
  .sauce-mandala__center {
    position: static; transform: none; grid-column: 1 / -1;
    max-width: 480px; margin: 0 auto 8px; order: -1;
  }
  .sauce-cup,
  .sauce-cup--1, .sauce-cup--2, .sauce-cup--3, .sauce-cup--4,
  .sauce-cup--5, .sauce-cup--6, .sauce-cup--7 {
    position: static; transform: none; inset: auto;
  }
  .sauce-cup img { width: min(38vw, 170px); }
  .sauce-cup--1 { grid-column: 1 / -1; }
  .sauce-cup--1 img { width: min(44vw, 200px); }
}

/* #5 — Timeline connector mobile: đường chấm dọc bên trái (CSS thuần,
   không dùng thuộc tính d — Safari iOS chưa hỗ trợ ổn định) */
@media (max-width: 760px) {
  .about-timeline .container { padding-left: 46px; position: relative; }
  .about-timeline .container::before {
    content: ''; position: absolute; left: 22px; top: 30px; bottom: 30px;
    border-left: 3px dotted var(--toss-kale); opacity: 0.6;
  }
  .about-timeline .container::after {
    content: ''; position: absolute; left: 15px; top: 12px;
    width: 17px; height: 17px; border-radius: 50%; background: var(--toss-kale);
  }
  .timeline-item::before {
    content: ''; position: absolute; left: -31px; top: 14px;
    width: 17px; height: 17px; border-radius: 50%; background: var(--toss-squash);
  }
}


/* SPRINT TOS-218 #6 — placeholder cho món chưa có ảnh đúng (Kale My Ex wrap) */
.media-pending {
  display: flex; align-items: center; justify-content: center; text-align: center;
  width: 100%; height: 100%; min-height: 200px;
  background: repeating-linear-gradient(135deg, #F1EEE2, #F1EEE2 14px, #ECE8D8 14px, #ECE8D8 28px);
  color: var(--toss-kale); font-family: var(--font-head); font-style: italic;
  font-size: clamp(15px, 1.1vw, 20px); opacity: 0.75; border-radius: inherit;
}
.menu-item__media .media-pending { position: absolute; inset: 0; }


/* SPRINT TOS-218 follow-up (2026-07-19): hero arrows removed (auto-advance
   only); tab headlines fit one row on mobile. */
@media (max-width: 560px) {
  .tab-headlines { gap: 16px; flex-wrap: nowrap; justify-content: space-between; }
  .tab-headline { font-size: clamp(17px, 5.2vw, 24px); white-space: nowrap; }
}


/* Temp hold pages (calc/news pulled until launch/TA approval, 2026-07-19) */
.news-hold { background: var(--toss-cabbage); text-align: center; padding: clamp(80px, 14vw, 200px) 0; }
.news-hold__eyebrow { display: inline-block; font-size: clamp(11px, 0.8vw, 15px); letter-spacing: 0.22em; color: var(--toss-squash); margin-bottom: 18px; }
.news-hold__title { font-family: var(--font-head); font-style: italic; font-weight: 300; letter-spacing: -0.03em; color: var(--toss-kale); font-size: clamp(32px, 4vw, 64px); line-height: 1.1; margin: 0 0 16px; }
.news-hold__sub { font-size: clamp(14px, 1vw, 19px); opacity: 0.8; max-width: 46ch; margin: 0 auto 32px; }

/* ----- Timeline Google Maps links (About, 2026-07-20) ----- */
.timeline-item__map {
  display: inline-block; margin-top: 14px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em; color: var(--toss-beetroot); text-decoration: none;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.timeline-item__map:hover { opacity: 0.72; }
.timeline-item__media a { display: block; border-radius: inherit; overflow: hidden; }
