/* ═══════════════════════════════════════
   Jok2Go — Original Brand Design
   Palette: Wine/Burgundy + Cream + Gold
═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Sarabun:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Mitr:wght@400;500;600;700&display=swap');

:root {
  --wine:        #6B1A3A;   /* deep burgundy wine — primary */
  --wine-deep:   #4A0E25;   /* navbar, footer */
  --wine-mid:    #8B2E50;   /* hover, borders */
  --wine-pale:   #EDD5DE;   /* light section bg tint */
  --rose:        #C4A0B0;   /* secondary text on dark */
  --cream:       #FBF8F2;   /* main bg — warm off-white */
  --cream-dark:  #EEE8DC;   /* card borders, dividers */
  --parchment:   #FDF9F4;   /* card bg */
  --orange:      #E07B1A;   /* accent CTA */
  --orange-pale: #FDF0DC;
  --white:       #FFFFFF;
  --ink:         #2A2A2A;   /* body text */
  --ink-light:   #5A5A5A;
  --ink-muted:   #8A8A8A;
  --radius-sm:   8px;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --shadow-sm:   0 2px 8px rgba(74,14,37,0.08);
  --shadow:      0 4px 20px rgba(74,14,37,0.12);
  --shadow-lg:   0 8px 40px rgba(74,14,37,0.18);
  --transition:  all 0.28s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Sarabun', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Mitr', 'Sarabun', sans-serif;
  color: var(--wine-deep);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--ink-light); font-size: 1rem; }
a  { color: var(--wine); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* ── Section headings ── */
.sec-head       { text-align: center; margin-bottom: 56px; }
.sec-tag {
  display: inline-block;
  font-family: 'Sarabun', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--wine-mid); margin-bottom: 10px;
}
.sec-tag::before, .sec-tag::after {
  content: '── '; color: var(--wine-pale);
}
.sec-head h2  { margin-bottom: 12px; }
.sec-head p   { max-width: 560px; margin: 0 auto; color: var(--ink-light); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px; border-radius: 50px;
  font-family: 'Mitr', sans-serif;
  font-size: 1rem; font-weight: 500;
  border: none; cursor: pointer;
  transition: var(--transition); text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--wine-deep); color: var(--white);
  box-shadow: 0 4px 16px rgba(44,63,53,0.3);
}
.btn-primary:hover {
  background: var(--wine); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(44,63,53,0.4);
}
.btn-orange {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 16px rgba(224,123,26,0.35);
}
.btn-orange:hover {
  background: #c86d14; color: var(--white);
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224,123,26,0.45);
}
.btn-outline {
  background: transparent; color: var(--wine-deep);
  border: 2px solid var(--wine-deep);
}
.btn-outline:hover { background: var(--wine-deep); color: var(--white); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: var(--white); color: var(--wine-deep); }

/* ═══ NAVBAR ═══════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: var(--wine-deep);
  padding: 0 28px;
}
.navbar-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar-brand {
  font-family: 'Mitr', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--white);
  display: flex; align-items: center; gap: 10px;
}
.brand-bowl {
  width: 40px; height: 40px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.navbar-brand .brand-2 { color: var(--orange); }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  padding: 6px 14px; border-radius: 50px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.nav-cta {
  background: var(--orange) !important; color: var(--white) !important;
  border-radius: 50px;
}
.nav-cta:hover { background: #c86d14 !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; }

/* ═══ HERO ═══════════════════════════ */
.hero {
  background: var(--cream);
  min-height: 88vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
/* Illustrated background blobs */
.hero::before {
  content: '';
  position: absolute; top: -60px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--wine-pale) 0%, transparent 70%);
  opacity: 0.6;
}
.hero::after {
  content: '';
  position: absolute; bottom: -40px; left: -60px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--orange-pale) 0%, transparent 70%);
  opacity: 0.7;
}
.hero-inner {
  max-width: 1140px; margin: 0 auto; padding: 80px 28px;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--wine-mid);
  background: var(--wine-pale); padding: 6px 16px; border-radius: 50px;
  margin-bottom: 20px;
}
.hero-eyebrow span { color: var(--wine-deep); }
.hero h1 { color: var(--wine-deep); margin-bottom: 8px; }
.hero h1 .accent { color: var(--orange); }
.hero-sub {
  font-size: 1.35rem; font-weight: 600;
  color: var(--wine-mid); margin-bottom: 20px;
  font-family: 'Mitr', sans-serif;
}
.hero-desc { font-size: 1.05rem; color: var(--ink-light); margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-proof {
  display: flex; gap: 28px;
  padding: 20px 28px;
  background: var(--parchment);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  width: fit-content;
}
.hero-proof-item strong {
  display: block; font-family: 'Mitr', sans-serif;
  font-size: 1.5rem; color: var(--wine-deep);
}
.hero-proof-item span { font-size: 0.78rem; color: var(--ink-muted); }

/* Hero visual — card stack */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card-stack { position: relative; width: 320px; height: 360px; }
.hero-card-main {
  background: var(--parchment);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: absolute; top: 0; left: 0; right: 0;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.hero-card-bg {
  position: absolute; top: 16px; left: 16px; right: -16px;
  background: var(--wine-pale);
  border-radius: var(--radius-lg);
  bottom: -16px; z-index: 1;
}
.bowl-emoji { font-size: 5rem; text-align: center; display: block; margin-bottom: 12px; }
.hero-card-main h3 {
  font-size: 1.2rem; text-align: center; margin-bottom: 6px;
  color: var(--wine-deep);
}
.hero-card-main .kcal-big {
  text-align: center; font-family: 'Mitr', sans-serif;
  font-size: 2rem; font-weight: 700; color: var(--orange);
  margin-bottom: 12px;
}
.macro-row {
  display: flex; gap: 0;
  border: 1px solid var(--cream-dark); border-radius: var(--radius-sm);
  overflow: hidden; margin-bottom: 16px;
}
.macro-cell {
  flex: 1; text-align: center; padding: 8px 6px;
  border-right: 1px solid var(--cream-dark);
}
.macro-cell:last-child { border-right: none; }
.macro-cell .mv { font-weight: 700; color: var(--wine-deep); font-size: 1rem; }
.macro-cell .ml { font-size: 0.68rem; color: var(--ink-muted); text-transform: uppercase; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.tag {
  font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 50px;
  background: var(--wine-pale); color: var(--wine-deep);
}
.tag-orange { background: var(--orange-pale); color: var(--orange); }

/* ══ Wavy divider ══ */
.wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ═══ WHY SECTION ═══════════════════ */
.why-section { background: var(--wine-deep); padding: 88px 0; position: relative; }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}
.why-icon {
  font-size: 2.2rem; width: 64px; height: 64px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 18px;
}
.why-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.why-card p  { color: var(--rose); font-size: 0.88rem; }

/* ═══ MENU ═══════════════════════════ */
.menu-section { background: var(--cream); }
.filter-bar {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 44px; flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 22px; border-radius: 50px;
  border: 2px solid var(--cream-dark);
  background: var(--parchment); color: var(--ink-light);
  font-family: 'Sarabun', sans-serif;
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--wine-deep); color: var(--white);
  border-color: var(--wine-deep);
}
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.menu-card {
  background: var(--parchment);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--wine-pale);
}
.menu-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--wine-pale), var(--cream-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  position: relative;
}
.menu-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--wine-deep); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 4px 12px; border-radius: 50px;
}
.menu-badge.orange { background: var(--orange); }
.menu-card-body { padding: 20px 22px; }
.kcal-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--orange-pale); color: var(--orange);
  font-size: 0.8rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
  margin-bottom: 8px;
}
.menu-card-body h3 { color: var(--wine-deep); margin-bottom: 5px; font-size: 1rem; }
.menu-card-body .desc { font-size: 0.84rem; color: var(--ink-muted); margin-bottom: 14px; }
.macro-strip {
  display: flex; gap: 0;
  background: var(--cream); border-radius: var(--radius-sm);
  overflow: hidden; border: 1px solid var(--cream-dark);
}
.ms-cell { flex: 1; text-align: center; padding: 7px 4px; border-right: 1px solid var(--cream-dark); }
.ms-cell:last-child { border-right: none; }
.ms-val { font-weight: 700; color: var(--wine-deep); font-size: 0.9rem; }
.ms-lbl { font-size: 0.64rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ═══ CALORIE CALCULATOR ════════════ */
.calc-section { background: var(--parchment); }
.calc-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }

/* Item cards */
.calc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; }
.calc-item {
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 16px 14px;
  cursor: pointer; transition: var(--transition);
  user-select: none; position: relative;
}
.calc-item:hover { border-color: var(--wine-mid); box-shadow: var(--shadow-sm); }
.calc-item.selected { border-color: var(--wine-deep); background: var(--wine-pale); }
.calc-item.selected::after {
  content: '✓';
  position: absolute; top: 8px; right: 10px;
  width: 20px; height: 20px;
  background: var(--wine-deep); color: var(--white);
  border-radius: 50%; font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 20px; text-align: center;
}
.ci-emoji { font-size: 1.9rem; display: block; margin-bottom: 6px; }
.ci-name  { font-weight: 600; font-size: 0.88rem; color: var(--wine-deep); margin-bottom: 2px; }
.ci-cal   { font-size: 0.75rem; color: var(--ink-muted); margin-bottom: 10px; }
.qty-row  { display: flex; align-items: center; gap: 10px; }
.qbtn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--wine-deep);
  background: var(--parchment); color: var(--wine-deep);
  font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  line-height: 1; flex-shrink: 0;
}
.qbtn:hover { background: var(--wine-deep); color: var(--white); }
.qnum { font-weight: 700; color: var(--wine-deep); min-width: 18px; text-align: center; font-size: 1rem; }

/* Result panel */
.result-panel {
  background: var(--wine-deep);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky; top: 84px;
  color: var(--white);
}
.result-panel h3 { color: var(--white); font-size: 0.9rem; font-weight: 500; margin-bottom: 18px; opacity: 0.8; }
.total-display { text-align: center; margin-bottom: 20px; }
.total-num {
  font-family: 'Mitr', sans-serif;
  font-size: 4rem; font-weight: 700; color: var(--white); line-height: 1;
}
.total-unit { font-size: 0.9rem; color: var(--rose); }

/* Progress ring / gauge */
.gauge-area { margin-bottom: 20px; }
.gauge-labels { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--rose); margin-bottom: 5px; }
.gauge-track { height: 10px; background: rgba(255,255,255,0.15); border-radius: 5px; overflow: hidden; }
.gauge-bar { height: 100%; border-radius: 5px; transition: width 0.4s ease, background 0.4s ease; background: #6BCB77; }
.gauge-bar.warn { background: #FFD700; }
.gauge-bar.over { background: #FF6B6B; }

.status-chip {
  text-align: center; font-size: 0.9rem; font-weight: 600;
  padding: 9px 16px; border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.status-chip.good { background: rgba(107,203,119,0.2); color: #6BCB77; }
.status-chip.warn { background: rgba(255,215,0,0.2); color: #FFD700; }
.status-chip.over { background: rgba(255,107,107,0.2); color: #FF6B6B; }

/* Macro row in result */
.macro-result { display: flex; gap: 8px; margin-bottom: 18px; }
.mr-cell {
  flex: 1; text-align: center; padding: 10px 6px;
  background: rgba(255,255,255,0.08); border-radius: var(--radius-sm);
}
.mr-val { font-size: 1rem; font-weight: 700; color: var(--white); }
.mr-lbl { font-size: 0.65rem; color: var(--rose); text-transform: uppercase; }

/* Order list */
.order-list { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 14px; margin-bottom: 14px; }
.order-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; font-size: 0.84rem; color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.order-row:last-child { border: none; }
.order-total-row {
  display: flex; justify-content: space-between;
  font-weight: 700; font-size: 0.9rem;
  padding-top: 10px; margin-top: 4px;
  border-top: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
}

/* Burn section */
.burn-section { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 14px; margin-bottom: 14px; }
.burn-title { font-size: 0.78rem; color: var(--rose); margin-bottom: 10px; }
.burn-row { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 0.84rem; color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.06); }
.burn-row:last-child { border: none; }
.burn-row .time { margin-left: auto; font-weight: 700; color: var(--white); }

.empty-state { text-align: center; padding: 32px 0; color: var(--rose); }
.empty-state .ei { font-size: 2.5rem; margin-bottom: 8px; }

/* ═══ BLOG ═══════════════════════════ */
.blog-section { background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 24px; }
.blog-card {
  background: var(--parchment);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img { height: 160px; background: linear-gradient(135deg, var(--wine-pale), var(--cream)); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.blog-body { padding: 20px 22px; }
.blog-tag { display: inline-block; background: var(--wine-pale); color: var(--wine-mid); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 10px; border-radius: 50px; margin-bottom: 10px; }
.blog-body h3 { color: var(--wine-deep); font-size: 1rem; margin-bottom: 7px; }
.blog-body p  { font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 12px; }
.blog-meta  { font-size: 0.76rem; color: var(--ink-muted); display: flex; gap: 14px; }

/* ═══ BANNER STRIPS ══════════════════ */
.cta-strip {
  background: var(--wine-deep);
  padding: 64px 28px; text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: 12px; }
.cta-strip p  { color: var(--rose); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══ Scrolling ticker ══ */
.ticker-wrap {
  background: var(--wine-deep); padding: 10px 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 18s linear infinite;
}
.ticker-item {
  font-family: 'Mitr', sans-serif;
  font-size: 0.88rem; font-weight: 600; color: var(--white);
  padding: 0 32px; display: inline-block;
}
.ticker-item::after { content: '•'; margin-left: 32px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══ FOOTER ════════════════════════ */
footer {
  background: var(--wine-deep); padding: 56px 28px 24px;
}
.footer-grid {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-name {
  font-family: 'Mitr', sans-serif;
  font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.footer-brand-name .orange { color: var(--orange); }
footer p { font-size: 0.86rem; color: var(--rose); line-height: 1.8; }
footer h4 { color: rgba(255,255,255,0.5); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
footer ul li a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1140px; margin: 20px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--rose);
}
.socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.social-btn:hover { background: var(--orange); color: var(--white); }

/* ═══ PAGE HERO (inner) ════════════ */
.page-hero {
  background: var(--wine-deep); padding: 60px 28px 50px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 10px; position: relative; }
.page-hero p  { color: var(--rose); font-size: 1.05rem; position: relative; }
.breadcrumb {
  display: flex; gap: 8px; justify-content: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-bottom: 14px; position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--orange); }

/* ═══ RESPONSIVE ════════════════════ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .calc-layout { grid-template-columns: 1fr; }
  .result-panel { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--wine-deep);
    padding: 16px 24px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 199;
  }
  .nav-toggle { display: block; }
  .section { padding: 56px 0; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; }
}

/* ── Animations ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.anim { opacity: 0; }
.anim.visible { animation: fadeUp 0.5s ease forwards; }

/* ═══ NEW FOOTER — Social + Delivery + Contact ════════════ */

/* Top dark strip */
.footer-top-strip {
  background: var(--wine-deep);
  padding: 32px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fts-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 28px;
}
.fts-left { display: flex; flex-direction: column; gap: 16px; }
.fts-brand { display: flex; align-items: center; gap: 14px; }
.fts-logo-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); border: 3px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.fts-brand-name {
  font-family: 'Mitr', sans-serif; font-size: 1.3rem; font-weight: 700;
  color: var(--white);
}
.fts-brand-name span { color: var(--orange); }
.fts-brand-sub { font-size: 0.78rem; color: var(--rose); }

/* Social icons */
.fts-social { display: flex; gap: 10px; }
.fts-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Mitr', sans-serif; font-size: 0.82rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  transition: var(--transition);
}
.fts-icon:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* Delivery section */
.fts-right { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.fts-delivery-title {
  font-family: 'Mitr', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.04em;
}
.fts-delivery-logos { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.dl-badge {
  height: 42px; min-width: 80px;
  border-radius: 50px; display: flex; align-items: center; justify-content: center;
  font-family: 'Mitr', sans-serif; font-size: 0.82rem; font-weight: 700;
  padding: 0 16px; white-space: nowrap;
}
.dl-grab   { background: #00B14F; color: #fff; }
.dl-lman   { background: #F9D01E; color: #1A1A1A; }
.dl-robin  { background: #E8403C; color: #fff; }
.dl-shopee { background: #EE4D2D; color: #fff; }

/* Contact section */
.footer-contact-strip {
  background: var(--parchment);
  border-top: 3px solid var(--wine-pale);
  padding: 36px 28px;
}
.fcs-grid {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.fcs-col {}
.fcs-title {
  font-family: 'Mitr', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--wine-deep); margin-bottom: 4px;
}
.fcs-sub { font-size: 0.82rem; color: var(--ink-muted); margin-bottom: 10px; }
.fcs-divider { height: 2px; background: var(--wine-pale); margin-bottom: 14px; }
.fcs-row {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 0; font-size: 0.88rem; color: var(--ink-light);
}
.fcs-row-icon { font-size: 1rem; }

@media (max-width: 768px) {
  .fts-inner { flex-direction: column; align-items: flex-start; }
  .fts-right { align-items: flex-start; }
  .fts-delivery-logos { justify-content: flex-start; }
  .fcs-grid { grid-template-columns: 1fr; gap: 24px; }
}
