:root {
  --bg: #f4f2ef;
  --text: #1f1a17;
  --panel: #efedea;
  --line: rgba(0, 0, 0, 0.06);
  --shadow: 0 -12px 40px rgba(0, 0, 0, 0.12);
  --header-h: 88px;
  --panel-h: min(33vh, 290px);
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html, body {
  height: 100%; margin: 0; background: var(--bg); color: var(--text); font-family: var(--font-serif);
}
body { overflow-x: hidden; overflow-y: auto; }
a, button { color: inherit; font: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.site-shell { position: relative; width: 100%; min-height: 100dvh; background: var(--bg); }

.topbar {
  position: fixed; z-index: 30; top: 0; left: 0; width: 100%; height: var(--header-h); display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; padding: 10px 20px 0; pointer-events: none; filter: brightness(.72) contrast(1.06) saturate(.9);
}
.topbar > * { pointer-events: auto; }
.topbar::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 92px; background: linear-gradient(to bottom, rgba(244,242,239,0.82), rgba(244,242,239,0.42) 55%, rgba(244,242,239,0)); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); pointer-events: none; z-index: -1;
}
.topbar-link, .brand {
  text-decoration: none; font-size: clamp(2rem, 2.6vw, 3rem); line-height: 1; letter-spacing: -0.015em; color: rgba(16, 12, 10, 0.95); text-shadow: 0 1px 2px rgba(255, 255, 255, 0.45), 0 0 1px rgba(255,255,255,0.5);
}
.info-trigger { justify-self: start; display: inline-flex; align-items: center; gap: 0.1em; }
.info-trigger .plus { font-size: 1.06em; line-height: 0.8; }
.brand { justify-self: center; }
.cta-link { justify-self: end; }

.hero { position: relative; width: 100%; height: 100%; background: #ddd; }
.hero-media, .hero-video, .hero-fallback-slideshow, .hero-fallback-slideshow .slide, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video, .hero-fallback-slideshow .slide { object-fit: cover; object-position: center; }
.hero-video { z-index: 1; background: #d9d6d1; }
.hero-fallback-slideshow { z-index: 0; }
.hero-fallback-slideshow .slide { opacity: 0; transition: opacity 1.1s ease; }
.hero-fallback-slideshow .slide.is-active { opacity: 1; }
.hero-overlay { z-index: 2; pointer-events: none; background: linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(255,255,255,0)); }

.info-panel { position: fixed; inset: 0; z-index: 40; pointer-events: none; }
.panel-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.08); opacity: 0; transition: opacity 220ms ease; }

/* FIX INFO PANEL */
.panel-sheet { position: absolute; left: 0; right: 0; bottom: 0; height: auto !important; transform: translateY(calc(100% + 12px)); transition: transform 360ms cubic-bezier(.2,.8,.2,1); }
.panel-inner { height: fit-content; background: var(--panel); border-top: 1px solid var(--line); box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr auto; align-items: stretch; padding: 14px 18px 40px; gap: 16px; }
.panel-main { min-width: 0; display: flex; align-items: flex-start; }
.panel-nav { display: flex; flex-direction: column; gap: 6px; }

/* FIX SYNTAX ERROR ตรงนี้ครับ */
.panel-nav a { text-decoration: none; font-size: clamp(2.1rem, 3vw, 3.6rem); line-height: 0.95; letter-spacing: -0.02em; color: rgba(24, 19, 17, 0.98); width: fit-content; }
.panel-nav a:hover { opacity: 0.75; }
.panel-nav .is-italic { font-style: italic; }

.panel-right { width: 118px; display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.close-btn { font-size: 3.2rem; line-height: 0.8; color: rgba(30, 25, 22, 0.9); transform: translateY(-4px); }
.close-btn:hover { opacity: 0.7; }

.michelin-badge { width: 148px; height: 148px; border-radius: 999px; background: url('assets/michelin-2026-round-red.png') center/cover no-repeat; color: transparent; display: block; overflow: hidden; text-indent: -9999px; white-space: nowrap; box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12); }
.michelin-badge > *, .michelin-badge .badge-mark, .michelin-badge .badge-text, .michelin-badge .badge-year, .michelin-badge span, .michelin-badge small { display: none !important; }

body.panel-open .info-panel { pointer-events: auto; }
body.panel-open .panel-backdrop { opacity: 1; }
body.panel-open .panel-sheet { transform: translateY(0); }

/* Menu Page */
.menu-page { overflow: hidden; background: #efeeeb; }
.topbar.topbar-solid { pointer-events: auto; }
.menu-layout { min-height: 100dvh; display: grid; grid-template-columns: minmax(0, 1fr) minmax(520px, 50%); background: #efeeeb; }
.menu-visual { position: relative; border-right: 1px solid rgba(0,0,0,0.05); background: radial-gradient(circle at 25% 28%, rgba(255,255,255,.9), rgba(239,236,230,.55) 35%, rgba(235,231,226,.9) 70%), #ece9e3; }
.menu-visual-stage { position: absolute; inset: 0; }
.plate { position: absolute; object-fit: cover; filter: drop-shadow(0 14px 18px rgba(0,0,0,0.12)); border-radius: 50%; }
.plate-left { width: min(260px, 28vw); height: min(260px, 28vw); left: 15%; top: 31%; }
.plate-right { width: min(250px, 27vw); height: min(250px, 27vw); left: 36%; top: 30%; }
.menu-left-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; padding: 0; }
.menu-content { position: relative; background: #efeeeb; }
.menu-scroll { min-height: 100dvh; overflow-y: auto; padding: calc(var(--header-h) + 58px) 28px 40px; }
.menu-title { text-align: center; font-weight: 500; font-size: clamp(2.5rem, 3.2vw, 3.6rem); line-height: 1; margin: 0 0 64px; }
.menu-table { width: min(760px, 100%); margin: 0 auto; display: grid; gap: 18px; }
.menu-table .row { display: grid; grid-template-columns: minmax(220px, 1.25fr) minmax(120px, 0.8fr) auto; align-items: baseline; gap: 18px; font-size: clamp(1.45rem, 2vw, 1.95rem); line-height: 1.1; }
.menu-table .row > div:nth-child(2) { text-align: left; }
.menu-table .row > div:last-child { text-align: right; white-space: nowrap; }
.menu-notes { width: min(720px, 100%); margin: 78px auto 0; text-align: center; color: rgba(31, 26, 23, 0.72); font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 0.92rem; line-height: 1.25; }
.menu-notes p { margin: 0 0 18px; }
.menu-notes strong { color: rgba(31, 26, 23, 0.82); font-weight: 700; }
.menu-notes em { font-style: italic; }
.policy-link-wrap { margin-top: 32px; margin-bottom: 18px; }
.policy-link { color: rgba(31, 26, 23, 0.78); text-decoration: none; font-weight: 700; letter-spacing: 0.01em; }
.policy-link:hover { opacity: .75; }

/* Homepage stacked visuals (Cargo-like spacing + mixed sizes) */
.home-stack { position: relative; width: 100%; min-height: 100dvh; background: var(--bg); }
.home-stack-track { width: 100%; padding-top: calc(var(--header-h) - 8px); padding-bottom: 0; }
.home-row { margin: 0; width: 100%; display: grid; gap: 0; align-items: start; justify-content: stretch; padding: 0; }
/* --- บังคับให้รูปในหน้าแรกขยายเต็มจอ 100vw --- */
.row-full { grid-template-columns: 100%; }

/* บังคับกว้าง 100% ขั้นเด็ดขาด */
body.home-page .row-full.row-narrow { 
    grid-template-columns: 100% !important; 
    max-width: 100vw !important;
}

body.home-page .home-stack-track,
body.home-page .home-stack-track.cargo-grid-sequence {
    width: 100vw !important;
    max-width: 100vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

body.home-page .frame-row {
    width: 100vw !important; 
    max-width: 100vw !important;
}

body.home-page .frame-row .media-shell {
    border-radius: 0 !important; 
    width: 100% !important;
}
.row-duo { grid-template-columns: 1fr 1fr; }
.row-duo-editorial.a-b { grid-template-columns: 0.92fr 1.08fr; }
.row-duo-editorial.b-a { grid-template-columns: 1.08fr 0.92fr; }
.row-duo-editorial.c-c { grid-template-columns: 1fr 1fr; }
.row-offset .media-shell:first-child { margin-top: 2.2vh; }
.media-shell { position: relative; overflow: hidden; background: #ece9e3; border-radius: 0; transform: translateY(0px); will-change: transform; }
.row-full .media-shell { height: clamp(46vh, 62vh, 70vh); }
.row-duo .media-shell { height: clamp(28vh, 40vh, 49vh); }
.row-full.row-narrow .media-shell { height: clamp(36vh, 48vh, 56vh); }
.media-shell img { width: 100%; height: calc(100% + 18px); margin-top: -9px; object-fit: cover; object-position: center; display: block; transform: scale(1.005); }

.row-duo .media-shell img[src*="Etcha_Home6"], .row-duo .media-shell img[src*="Etcha_Home7"], .row-duo .media-shell img[src*="Etcha_Home10"], .row-duo .media-shell img[src*="Etcha_Home11"] { object-fit: cover; }
.focal-top img { object-position: center top; }
.focal-bottom img { object-position: center bottom; }
.focal-left img { object-position: left center; }
.focal-right img { object-position: right center; }
.focal-center img { object-position: center center; }

.home-stack::before { content: ''; position: fixed; top: 0; left: 0; right: 0; height: 118px; pointer-events: none; z-index: 20; background: linear-gradient(to bottom, rgba(244,242,239,0.78), rgba(244,242,239,0.18) 58%, rgba(244,242,239,0)); }

.home-stack-track.cargo-grid-sequence { padding-top: calc(var(--header-h) - 6px); padding-bottom: 0; }
.frame-row { width: 100%; gap: 0; }
.frame-row .media-shell { height: var(--frame-h, 240px); overflow: hidden; background: #ece8e2; }
.frame-row .media-shell img { width: 100%; height: 100%; margin-top: 0; object-fit: cover; transform: scale(1.01); will-change: transform; }

.frame-row.h-xs { --frame-h: clamp(120px, 19vh, 170px); }
.frame-row.h-sm { --frame-h: clamp(170px, 27vh, 260px); }
.frame-row.h-md { --frame-h: clamp(210px, 34vh, 340px); }
.frame-row.h-lg { --frame-h: clamp(240px, 40vh, 420px); }
.frame-row.h-hero { --frame-h: clamp(260px, 46vh, 520px); }

/* The Team page */
.team-page { background: #efede9; }
.team-layout { --team-gap: clamp(20px, 2.4vw, 40px); --team-left-width: clamp(460px, 44vw, 700px); --team-right-width: clamp(420px, 34vw, 560px); display: grid; grid-template-columns: minmax(420px, var(--team-left-width)) minmax(420px, var(--team-right-width)); gap: var(--team-gap); width: min(1380px, calc(100vw - 88px)); margin: 0 auto; min-height: 100dvh; padding-top: calc(var(--header-h) + 14px); }
.team-left { position: sticky; top: calc(var(--header-h) + 8px); align-self: start; height: calc(100dvh - var(--header-h) - 16px); padding: 0 0 12px 0; }
.team-left-frame { height: 100%; width: 100%; border-radius: 2px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.08); background: #ddd; cursor: zoom-in; }
.team-left-image { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; filter: saturate(.88) contrast(.98); }
.team-right { min-width: 0; padding: 8px 6px 80px; border-left: 1px solid rgba(0,0,0,.06); }
.team-hero { padding: 32px 0 22px; margin-bottom: 8px; margin-left: calc(-1 * (var(--team-left-width) + var(--team-gap))); width: calc(100% + var(--team-left-width) + var(--team-gap)); border-bottom: 1px solid rgba(0,0,0,.04); }
.team-hero h1 { margin: 0; padding-left: 2px; font-size: clamp(3.1rem, 5vw, 5.2rem); line-height: .92; letter-spacing: -.02em; color: rgba(24,19,17,.96); }
.team-card { padding: 18px 4px 22px; margin: 0 0 18px; border-top: 1px solid rgba(0,0,0,.08); max-width: 46ch; }
.team-card h2 { margin: 0; font-size: clamp(1.75rem, 2.4vw, 2.25rem); line-height: .98; letter-spacing: -.015em; }
.team-role { margin: 4px 0 16px; font-size: 1.15rem; font-style: italic; color: rgba(26,20,18,.72); }
.team-card p { margin: 0 0 12px; font-size: clamp(1rem, 1.05vw, 1.16rem); line-height: 1.36; color: rgba(24,19,17,.9); max-width: 44ch; }
.team-card:last-child { border-bottom: 1px solid rgba(0,0,0,.08); padding-bottom: 26px; }

/* CONTACT PAGE */
.contact-page{background:#ecebe7;color:#1f1d1a;}
.contact-topbar{background:linear-gradient(to bottom, rgba(236,235,231,.96), rgba(236,235,231,.84));backdrop-filter: blur(2px);}
.contact-stage{min-height:100vh;display:grid;grid-template-columns:minmax(420px,49%) minmax(520px,51%);align-items:stretch;background:#efeeeb;}
.contact-left-panel{position:sticky;top:0;height:100vh;display:flex;align-items:stretch;justify-content:flex-end;padding-top:0;}
.contact-left-frame{width:100%;height:100%;cursor:zoom-in;outline:none;}
.contact-left-frame:focus-visible{box-shadow:0 0 0 2px rgba(0,0,0,.22) inset;}
.contact-left-image{width:100%;height:100%;display:block;object-fit:cover;object-position:center center;}
.contact-right-panel{display:flex;align-items:flex-start;justify-content:center;background:#efeeeb;padding:6.2rem 2.4rem 2.4rem;}
.contact-inner{width:min(650px,100%);padding-top:2.8rem;color:#272420;}
.contact-heading{text-align:center;font-weight:400;font-size:clamp(2.6rem,3.4vw,4rem);line-height:1;margin:0 0 2.7rem;letter-spacing:-.01em;}
.contact-link-block{margin-bottom:1.25rem;}
.contact-link-gap{height:.95rem;}
.contact-line{display:flex;align-items:center;gap:.35rem;width:fit-content;max-width:100%;text-decoration:none;color:inherit;line-height:1.02;letter-spacing:-.005em;}
.contact-line + .contact-line{margin-top:.28rem;}
.contact-line--lg{font-size:clamp(1.45rem,2vw,2.25rem);}
.contact-inline-icon{font-size:.86em;line-height:1;transform:translateY(-.03em);}
.contact-line:hover{opacity:.7;}

/* THE TEAM — Editorial alternating layout */
.page-theteam { background: #ecebe8; color: #1f1d1b; }
.page-theteam .team-layout, .page-theteam .team-left, .page-theteam .team-right { display: none !important; }
.team-editorial { max-width: 980px; margin: 0 auto; padding: 6.2rem 1rem 2.5rem; font-family: Georgia, "Times New Roman", serif; }
.team-editorial__title { margin: 0 0 2.25rem; text-align: center; font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; color: rgba(32, 30, 28, 0.9); }
.team-person { width: min(540px, 100%); margin: 0 0 2.75rem; color: rgba(28, 27, 25, 0.9); }
.team-person.is-right { margin-left: auto; text-align: right; }
.team-person__head { margin-bottom: 0.7rem; }
.team-person__name { margin: 0; font-size: clamp(1rem, 1.35vw, 1.25rem); line-height: 1.1; font-weight: 600; letter-spacing: -0.01em; color: rgba(24, 23, 21, 0.96); }
.team-person__role { margin: 0.05rem 0 0; font-size: clamp(0.9rem, 1.15vw, 1.05rem); line-height: 1.05; font-style: italic; font-weight: 500; color: rgba(20, 19, 18, 0.94); }
.team-person__body p { margin: 0 0 0.85rem; font-size: clamp(1rem, 1.45vw, 1.22rem); line-height: 1.18; color: rgba(31, 30, 28, 0.9); text-wrap: pretty; }
.team-person.is-right .team-person__body p { margin-left: auto; }
.team-person.is-right .team-person__body { max-width: 500px; margin-left: auto; }
.team-person + .team-person { margin-top: 1.6rem; }

/* THE TEAM — topbar scale patch (บังคับใช้เฉพาะ Desktop/Tablet) */
@media (min-width: 769px) {
  body.page-theteam .topbar-link, body.page-theteam .brand { font-size: clamp(2.2rem, 2.9vw, 3.25rem) !important; line-height: 1 !important; }
  body.page-theteam .panel-nav a { font-size: clamp(2.35rem, 3.25vw, 3.9rem) !important; line-height: 1.02 !important; }
  body.page-theteam .close-btn { font-size: 3.35rem !important; line-height: 1 !important; }
  body.page-theteam .michelin-badge { width: 148px !important; height: 148px !important; }
}
/* Responsive adjustments */
@media (min-width: 1100px) {
  .team-editorial { max-width: 1120px; padding-left: 1.25rem; padding-right: 1.25rem; }
  .team-person { width: 48%; }
  .team-person__body p { font-size: 1.22rem; line-height: 1.16; }
}

@media (max-width: 1024px) {
  .menu-layout { grid-template-columns: 1fr; grid-template-rows: 42dvh 1fr; height: auto; min-height: 100dvh; }
  .menu-visual { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.05); }
  .menu-left-art { padding: 16px 18px 20px; }
  .menu-scroll { height: auto; min-height: 58dvh; padding: 36px 16px 30px; }
  .menu-title { margin: 0 0 34px; font-size: clamp(2rem, 7vw, 2.8rem); }
  .menu-table { gap: 12px; }
  .menu-table .row { grid-template-columns: 1fr auto; grid-template-areas: "name price" "detail detail"; gap: 2px 12px; font-size: clamp(1.2rem, 4.7vw, 1.6rem); padding-bottom: 8px; border-bottom: 1px solid rgba(0,0,0,.05); }
  .menu-table .row > div:nth-child(1) { grid-area: name; }
  .menu-table .row > div:nth-child(2) { grid-area: detail; opacity: .82; font-size: .88em; }
  .menu-table .row > div:nth-child(3) { grid-area: price; text-align: right; }
}

@media (max-width: 980px) {
  .home-stack-track { padding-top: calc(var(--header-h) + 2px); }
  .row-full, .row-full.row-narrow { grid-template-columns: 1fr; }
  .row-duo, .row-duo-editorial.a-b, .row-duo-editorial.b-a, .row-duo-editorial.c-c { grid-template-columns: 1fr 1fr; }
  .row-full .media-shell, .row-full.row-narrow .media-shell { height: clamp(220px, 42vh, 360px); aspect-ratio: auto; }
  .row-duo .media-shell { height: clamp(150px, 27vh, 230px); aspect-ratio: auto; }
  .team-layout { grid-template-columns: 1fr; width: 100%; gap: 0; padding-top: calc(var(--header-h) - 2px); }
  .team-left { position: relative; top: 0; height: auto; padding: 0; }
  .team-left-frame { height: min(68dvh, 560px); border-radius: 0; box-shadow: none; }
  .team-right { border-left: 0; padding: 8px 14px 60px; }
  .contact-stage{grid-template-columns:1fr;}
  .contact-left-panel{position:relative;top:auto;height:48vh;min-height:340px;}
  .contact-right-panel{padding:5.6rem 1.2rem 2rem;}
  .contact-inner{padding-top:.25rem;width:100%;}
}

@media (min-width: 981px) {
  .row-duo .media-shell img { object-position: center center; }
  .home-row.row-duo { align-items: stretch; }
  .home-stack-track.cargo-grid-sequence { width: min(1320px, 100%); margin-inline: auto; padding-top: calc(var(--header-h) + 4px); }
  .frame-row.row-full.h-md { --frame-h: min(56vh, 520px); }
  .frame-row.row-full.h-lg { --frame-h: min(64vh, 620px); }
  .frame-row.row-full.h-hero { --frame-h: min(72vh, 740px); }
  .frame-row.row-duo.h-xs { --frame-h: min(22vh, 180px); }
  .frame-row.row-duo.h-sm { --frame-h: min(34vh, 360px); }
  .frame-row.row-duo { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; --panel-h: min(36vh, 260px); }
  .topbar { padding: 10px 10px 0; }
  .topbar::before { height: 74px; backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
  .topbar-link, .brand { font-size: clamp(1.2rem, 5.2vw, 2rem); }
  .panel-inner { padding: 10px 12px 14px; grid-template-columns: 1fr 70px; gap: 12px; }
  .panel-nav a { font-size: clamp(1.55rem, 6.2vw, 2.2rem); line-height: 0.98; }
  .panel-right { width: 70px; }
  .close-btn { font-size: 2.2rem; transform: translateY(-2px); }
  .michelin-badge { position: fixed; right: 24px; bottom: 40px; width: 148px; height: 148px; padding: 5px; }
  .frame-row.h-xs { --frame-h: 125px; }
  .frame-row.h-sm { --frame-h: 195px; }
  .frame-row.h-md { --frame-h: 250px; }
  .frame-row.h-lg { --frame-h: 300px; }
  .frame-row.h-hero { --frame-h: 340px; }
}

/* ==========================================
   JOURNAL HUB GRID (3 Columns)
========================================== */
.journal-container { max-width: 1380px !important; margin: 0 auto; padding: 0 40px; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px 40px; padding-top: 120px; }
.article-card { background: #fff; border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,0.04); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.article-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.06); }
.card-thumb { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; background: #f4f2ef; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 40px 35px; display: flex; flex-direction: column; flex-grow: 1; }
.card-body h2 { font-size: 1.55rem; margin: 0 0 18px; line-height: 1.2; font-weight: 500; }
.card-body .excerpt { font-size: 0.98rem; line-height: 1.5; color: #666; margin-bottom: 25px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.read-more-link { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; border-bottom: 1.5px solid #1f1a17; width: fit-content; padding-bottom: 2px; }

/* SINGLE ARTICLE PAGE STYLES */
.article-stage { padding: 140px 20px 100px; background: var(--bg); }
.article-container { max-width: 900px; margin: 0 auto; }
.article-main-title { font-size: clamp(2.5rem, 4vw, 3.8rem); line-height: 1.1; margin-bottom: 20px; }
.article-body-content p { font-size: 1.25rem; line-height: 1.6; margin-bottom: 1.8rem; color: #2a2623; }

@media (max-width: 1150px) { .journal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .journal-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 80px; } .card-body { padding: 30px 25px; } .journal-container { padding: 0 20px; } }

@media (max-width: 768px) {
  /* ... โค้ดมือถืออื่นๆ ของคุณที่มีอยู่แล้ว ... */

  .michelin-badge { 
    /* เปลี่ยนจาก position: fixed เป็น relative เพื่อให้อยู่ในกรอบ Menu Panel */
    position: relative !important; 
    right: auto !important; 
    bottom: auto !important; 

    /* ลดขนาดลงให้พอดีกับหน้าจอมือถือ */
    width: 90px !important; 
    height: 90px !important; 

    /* จัดให้อยู่ตรงกลาง หรือชิดขวาก็ได้ (อันนี้ปรับให้ชิดขวาตามเลย์เอาต์เดิม) */
    align-self: center;
    margin-right: 10px;
  }
}

/* ==========================================
   FIX: ปรับขนาดฟอนต์เมนูหน้า The Team บนมือถือให้เท่าหน้าอื่น
========================================== */
@media (max-width: 768px) {
  body.page-theteam .panel-nav a { 
    font-size: clamp(1.55rem, 6.2vw, 2.2rem) !important; 
    line-height: 0.98 !important; 
  }
  body.page-theteam .close-btn { 
    font-size: 2.2rem !important; 
  }
}

/* ==========================================
   FIX: ปรับฟอนต์เนื้อหาหน้า The Team บนมือถือให้เล็กลงและไม่หนา
========================================== */
@media (max-width: 768px) {
    /* 1. ปรับชื่อเชฟ (Name) ให้บางลงและเล็กลง */
    body.page-theteam .team-person__name {
        font-size: 1.5rem !important; 
        font-weight: 500 !important; /* ลดความหนาลงจาก 700 */
        margin-bottom: 5px !important;
    }

    /* 2. ปรับตำแหน่ง (Role) ให้บางลง */
    body.page-theteam .team-person__role {
        font-size: 1rem !important;
        font-weight: 400 !important; /* ปกติ (ไม่หนา) */
    }

    /* 3. ปรับเนื้อหาประวัติ (Body) ให้อ่านง่าย ไม่หนา และมีช่องไฟบรรทัด */
    body.page-theteam .team-person__body,
    body.page-theteam .team-person__body p {
        font-size: 0.95rem !important; /* ย่อขนาดลงให้พอดีจอมือถือ */
        font-weight: 400 !important;   /* ปกติ (ไม่ Bold) */
        line-height: 1.35 !important;  /* เพิ่มระยะห่างระหว่างบรรทัดให้อ่านสบายตา */
    }
}

/* ==========================================
   THE TEAM — เพิ่มขนาดรอยดินสอให้ใหญ่ขึ้น
========================================== */
/* ขนาดใหญ่สำหรับ Desktop */
body.page-theteam .team-person__brush {
    width: 15rem !important; /* ประมาณ 200px - ปรับให้ใหญ่ขึ้นมาก */
    height: auto !important;   /* คงสัดส่วนรูปเดิมไว้ */
}

/* ขนาดสำหรับ Mobile (ย่อลงนิดหน่อยแต่ยังใหญ่กว่าเดิม) */
@media (max-width: 860px) {
    body.page-theteam .team-person__brush {
        width: 9.5rem !important; /* ประมาณ 150px - พอดีกับหน้าจอมือถือ */
    }
}

/* ==========================================
   FIX: ควบคุมขนาดรูปภาพในหน้าอ่านบทความ (Single Article)
========================================== */
.article-container img,
.article-body-content img,
.article-stage img {
    max-width: 100% !important;  /* บังคับให้รูปกว้างสุดแค่ 100% ของกรอบเนื้อหา ห้ามล้น */
    height: auto !important;     /* ปรับความสูงตามสัดส่วนอัตโนมัติ (ไม่ให้รูปเบี้ยว) */
    max-height: 75vh !important; /* (เสริม) จำกัดความสูงไม่ให้เกิน 75% ของหน้าจอ รูปจะได้ไม่สูงจนบังตัวหนังสือหมด */
    object-fit: cover !important; /* จัดระเบียบรูปให้อยู่ตรงกลางกรอบ */
    display: block !important;
    margin: 0 auto 2rem auto !important; /* จัดให้อยู่กึ่งกลาง และเว้นระยะห่างด้านล่างก่อนเริ่มข้อความ */
    border-radius: 4px; /* ลบมุมรูปนิดๆ ให้ดูละมุนเข้ากับดีไซน์เว็บ */
}