/* ============================================================
   AHI SUSHI & POKE — Global Stylesheet
   AP5 "Wrapped With Care" · m16 palette: honey-kraft #D4A574 x sky #90E0EF
   Hero spec 1:1 from 官网Hero预览.html (desktop, >=900px) + mobile/ahi-b.html (<900px)
   Class architecture inherited from loop-sushi-site (donor) — tokens/type/brand
   assets swapped, Loop-only systems (marquee/sticky-order/loop-pattern/hero-loop)
   removed, hero-ahi + page-hero twine band + media-row/eyebrow added.
   ============================================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,500;0,7..72,650;1,7..72,500&family=Karla:wght@400;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --kraft: #D4A574;            /* body/hero drenched bottom */
  --kraft-deep: #C29464;
  --ink: #2A1F14;               /* primary deep brown (text/dark surfaces) */
  --ink-soft: #3A2B1B;
  --ink-dim: rgba(42, 31, 20, 0.72);
  --milk: #EFD9BC;              /* cream text on dark surfaces */
  --paper: #F7EDE0;             /* light warm paper section bg */
  --card: #FDF7EE;              /* card surface */
  --blue-pale: #CDE9F2;         /* badge bg (demo-locked) */
  --blue-mist: #E4F1F7;         /* light blue section bg */
  --blue-ink: #23404A;          /* ink on light-blue bg */
  --sky: #90E0EF;               /* packaging sky blue — accent only (thin lines/hover) */
  --footer-bg: #1F1710;
  --font-display: 'Literata', Georgia, serif;
  --font-body: 'Karla', system-ui, sans-serif;
  --nav-height: 72px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-card: 0 6px 22px rgba(42, 31, 20, 0.10);
  --shadow-lift: 0 14px 34px rgba(42, 31, 20, 0.16);
  --transition: 200ms ease-out;
  --z-nav: 100;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--kraft);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
a:focus-visible, button:focus-visible { outline: 3px solid currentColor; outline-offset: 3px; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; border: none; outline: none; }
button { cursor: pointer; }

/* --- Icon sprite (assets/images/icons.svg) --- */
.icon { display: inline-block; overflow: visible; }
.value-card-icon .icon { width: 46px; height: 46px; }
.ci-icon .icon { width: 20px; height: 20px; }
.cf-icon .icon { width: 24px; height: 24px; }
.loc-pin { margin-bottom: 12px; color: var(--ink); }
.loc-pin .icon { width: 34px; height: 34px; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVIGATION — subpages only (homepage nav lives inside the hero,
   see .brand-nav below). Same DOM pattern as donor: logo / links /
   order pill / hamburger toggle.
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--kraft);
  height: var(--nav-height);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}
.nav-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 650;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-logo small {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  display: block;
  margin-top: 3px;
  color: var(--ink-dim);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--ink) 78%, var(--kraft));
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   HERO — desktop (>=900px) 1:1 from 官网Hero预览.html .hero-ahi
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.hero-ahi { background: var(--kraft); color: var(--ink); }

.brand-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 22px clamp(20px, 4.5vw, 58px);
}
.hero-ahi .brand-nav .brand {
  font-family: Literata, Georgia, serif;
  font-style: italic;
  font-weight: 650;
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}
.hero-ahi .brand-nav .brand small {
  font-family: Karla, system-ui, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  display: block;
  margin-top: 4px;
}
.brand-nav .links { display: flex; gap: 24px; margin-left: auto; }
.hero-ahi .links a {
  color: color-mix(in srgb, var(--ink) 80%, var(--kraft));
  font-family: Karla, system-ui, sans-serif;
  font-weight: 600;
}
.hero-ahi .links a:hover { color: var(--ink); }
.hero-ahi .brand-nav .cta {
  display: inline-block;
  background: var(--ink);
  color: var(--milk);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: Karla, system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms ease-out;
}
.hero-ahi .brand-nav .cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(42, 31, 20, 0.3); }

.ahi-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(8px, 1.5vw, 20px) 22px 0;
  gap: 0;
}
.ahi-twine { color: rgba(42, 31, 20, 0.55); }
.ahi-body h1 {
  margin: 18px 0 0;
  font-family: Literata, Georgia, serif;
  font-weight: 650;
  font-size: clamp(2.6rem, 5.4vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
  max-width: 18ch;
}
.ahi-body .sub {
  margin: 16px 0 0;
  font-family: Literata, Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--ink-soft);
}
.ahi-body .we {
  margin: 12px 0 0;
  max-width: 52ch;
  font-family: Karla, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.ahi-badge {
  display: inline-block;
  margin-top: 18px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--blue-pale);
  color: var(--blue-ink);
  font-family: Karla, system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}
.ahi-ctas { display: flex; align-items: center; gap: 20px; margin-top: 26px; flex-wrap: wrap; justify-content: center; }
.ahi-ctas .hero-cta { padding: 15px 32px; }
.ahi-ctas .alt {
  color: var(--ink);
  font-family: Karla, system-ui, sans-serif;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.ahi-figure { margin: 30px 0 0; padding-bottom: 34px; }
.ahi-figure img {
  display: block;
  width: min(760px, 92vw);
  max-height: 44svh;
  object-fit: cover;
  object-position: center 62%;
  border-radius: 14px;
  outline: 1.5px dashed rgba(42, 31, 20, 0.55);
  outline-offset: 10px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

/* mobile-only hero pieces, hidden on desktop by default */
.bg-mobile, .tag-wrap { display: none; }

/* ============================================================
   HERO — mobile (<900px) 1:1 from mobile/ahi-b.html "kraft tag" hero
   ============================================================ */
@media (max-width: 900px) {
  .hero-ahi { position: relative; isolation: isolate; }
  .hero-ahi .bg-mobile {
    display: block;
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
  }
  .hero-ahi::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to top, rgba(58, 40, 22, 0.35) 0%, rgba(58, 40, 22, 0.05) 30%, rgba(58, 40, 22, 0) 60%, rgba(212, 165, 116, 0.45) 100%);
  }
  .ahi-body { display: none; }
  .brand-nav .links { display: none; }

  .tag-wrap {
    display: flex;
    margin-top: auto;
    padding: 0 18px 24px;
    flex-direction: column;
    align-items: center;
    animation: settle 700ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }
  @keyframes settle {
    from { opacity: 0; transform: translateY(16px) rotate(0.6deg); }
    to { opacity: 1; transform: none; }
  }
  .tag-string { color: rgba(42, 31, 20, 0.7); }
  .tag-wrap .tag {
    position: relative;
    width: min(430px, 100%);
    background: color-mix(in srgb, var(--kraft) 86%, white);
    border-radius: 14px;
    padding: 34px 24px 26px;
    text-align: center;
    outline: 1.5px dashed rgba(42, 31, 20, 0.55);
    outline-offset: 6px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  }
  .tag .hole {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--kraft);
    border: 2px solid rgba(42, 31, 20, 0.55);
  }
  .tag-title {
    margin: 0;
    font-family: Literata, Georgia, serif;
    font-weight: 650;
    font-size: clamp(1.9rem, 8.6vw, 2.3rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--ink);
    text-wrap: balance;
  }
  .tag .sub {
    margin: 16px 0 0;
    font-family: Literata, Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--ink-soft);
  }
  .tag .ahi-ctas { gap: 16px; margin-top: 18px; }
  .tag .ahi-ctas .hero-cta { padding: 15px 30px; font-size: 0.96rem; }
  .tag .ahi-badge { font-size: 0.82rem; padding: 7px 15px; }
  .hero-ahi .brand-nav .cta { padding: 9px 18px; font-size: 0.82rem; }
}

/* ============================================================
   BUTTONS (shared across hero + all pages)
   CTA 统一: bg ink / text milk / pill / Karla 700 / hover lift+shadow
   ============================================================ */
.hero-cta, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ink);
  color: var(--milk);
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: 0 6px 22px rgba(42, 31, 20, 0.3);
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms ease-out;
}
.hero-cta:hover, .btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.nav-order {
  display: inline-block;
  background: var(--ink);
  color: var(--milk);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.86rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms ease-out;
}
.nav-order:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(42, 31, 20, 0.3); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 13px 30px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--ink); color: var(--milk); }

/* CTA band (section--dark) sits on ink — invert so buttons stay visible */
.section--dark .btn-primary { background: var(--milk); color: var(--ink); }
.section--dark .btn-primary:hover { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4); }
.section--dark .btn-outline { color: var(--milk); border-color: var(--milk); }
.section--dark .btn-outline:hover { background: var(--milk); color: var(--ink); }

/* Secondary underline link, usable anywhere (color follows context via currentColor) */
.text-link {
  color: inherit;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: opacity var(--transition);
}
.text-link:hover { opacity: 0.7; }

/* ============================================================
   PAGE HERO (subpages) — kraft drenched + twine pattern band
   ============================================================ */
.page-hero {
  background: var(--kraft);
  padding: 76px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: min(88px, calc(100% - 28px));
  transform: translateY(-50%);
  background: url('/assets/images/pattern-twine.svg') center / auto 100% repeat-x;
  opacity: 0.5;
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--ink);
  position: relative;
  z-index: 1;
  text-wrap: balance;
}
.page-hero p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-top: 14px;
  position: relative;
  z-index: 1;
}
/* small status note under a page-hero (e.g. menu page ordering note) */
.menu-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-dim);
  padding: 16px 24px 0;
  position: relative;
  z-index: 1;
}

/* raw-fish advisory at menu page tail */
.menu-raw-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-dim);
  max-width: 62ch;
  margin: 0 auto;
  padding: 40px 24px 56px;
}
/* modifier-steps line on the Signature BYO card */


/* ============================================================
   SECTIONS — reverse-color system (m16 kraft x sky DNA)
   ============================================================ */
.section { padding: 80px 0; }
.section--paper { background: var(--paper); color: var(--ink); }
.section--blue { background: var(--blue-mist); color: var(--ink-soft); }
.section--kraft { background: var(--kraft); color: var(--ink); }
.section--dark { background: var(--ink); color: var(--milk); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 12px;
  text-wrap: balance;
}
.section--blue .section-header h2 { color: var(--blue-ink); }
.section-header p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto;
}
.section--paper .section-header p,
.section--kraft .section-header p { color: var(--ink-dim); }
.section--blue .section-header p { color: rgba(35, 64, 74, 0.75); }
.section--dark .section-header p { color: rgba(239, 217, 188, 0.7); }

/* small uppercase kicker label above a heading */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 10px;
}
.section--blue .eyebrow { color: rgba(35, 64, 74, 0.7); }
.section--dark .eyebrow { color: rgba(239, 217, 188, 0.7); }

/* ============================================================
   MEDIA ROW — reusable image + text block (packaging band on the
   homepage, tote/wipe blocks on /our-packaging/). Sides alternate
   by swapping source order of the two children; image leads on mobile.
   ============================================================ */
.media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.media-row-body h2 {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-wrap: balance;
}
.section--blue .media-row-body h2 { color: var(--blue-ink); }
.media-row-body p { font-size: 1rem; line-height: 1.75; margin-bottom: 16px; max-width: 52ch; }
.media-row-body .ahi-badge { margin-top: 4px; margin-bottom: 16px; }
.media-row-media img {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.media-row-media.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.media-row-media.two-up img { border-radius: var(--radius-md); }

/* ============================================================
   MENU LAYOUT (sidebar + grid) — lives on paper
   ============================================================ */
/* ============================================================
   MENU — kraft hang-tag wall（Ahi 原生吊牌墙，2026-07-14 换掉 Loop 式卡片墙）
   吊牌 = 打孔 + 短麻绳 + 虚线描边 + 浅蓝价格贴纸；居中温柔流
   ============================================================ */
.mt-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; margin: 28px 0 6px; }
.mt-chips a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 10px;
  background: color-mix(in srgb, var(--kraft) 42%, white);
  border: 1.5px dashed rgba(42, 31, 20, 0.38);
  font-weight: 600; font-size: 0.85rem; color: var(--ink);
  transition: border-color var(--transition), background var(--transition);
}
.mt-chips a:hover { border-color: rgba(42, 31, 20, 0.75); background: color-mix(in srgb, var(--kraft) 58%, white); }
.mt-chip-hole { width: 8px; height: 8px; border-radius: 50%; border: 1.6px solid rgba(42, 31, 20, 0.55); flex-shrink: 0; }

.mt-cat { padding: 46px 0 6px; }
.mt-cat-head { text-align: center; max-width: 62ch; margin: 0 auto; }
.mt-cat-head .icon { width: 30px; height: 30px; color: var(--ink); }
.mt-cat-head h3 { font-family: var(--font-display); font-weight: 650; font-size: 1.7rem; color: var(--ink); margin-top: 6px; }
.mt-cat-note { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--ink-dim); font-size: 0.98rem; margin-top: 4px; }
.mt-cat-twine { height: 26px; max-width: 430px; margin: 16px auto 30px; background: url('/assets/images/pattern-twine.svg') center / auto 100% repeat-x; opacity: 0.5; }

.mt-tags { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 28px; align-items: start; }
.mt-tags--mini { grid-template-columns: repeat(4, 1fr); gap: 34px 22px; max-width: 980px; margin: 0 auto; }

.mt-tag {
  position: relative; text-align: center;
  background: color-mix(in srgb, var(--kraft) 86%, white);
  border-radius: 12px; padding: 30px 20px 20px;
  outline: 1.5px dashed rgba(42, 31, 20, 0.5); outline-offset: 5px;
  box-shadow: 0 10px 26px rgba(42, 31, 20, 0.12);
}
.mt-tags--mini .mt-tag { padding: 26px 14px 16px; }
.mt-tag:nth-child(3n+1) { transform: rotate(-0.7deg); }
.mt-tag:nth-child(3n+2) { transform: rotate(0.5deg) translateY(7px); }
.mt-tag:nth-child(3n)   { transform: rotate(-0.25deg) translateY(3px); }
.mt-string {
  position: absolute; top: -26px; left: 50%; transform: translateX(-50%);
  width: 0; height: 24px; border-left: 2px dashed rgba(42, 31, 20, 0.45);
}
.mt-hole {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 13px; height: 13px; border-radius: 50%;
  border: 2px solid rgba(42, 31, 20, 0.5);
}
.mt-name { font-family: var(--font-display); font-weight: 650; font-size: 1.08rem; line-height: 1.3; color: var(--ink); margin-top: 4px; }
.mt-price { display: inline-block; margin-top: 9px; padding: 4px 13px; border-radius: var(--radius-pill); background: var(--blue-pale); color: var(--blue-ink); font-weight: 700; font-size: 0.85rem; }
.mt-desc { margin-top: 10px; font-size: 0.9rem; line-height: 1.6; color: var(--ink-dim); }
.mt-steps { margin-top: 10px; font-size: 0.78rem; letter-spacing: 0.02em; color: var(--ink-dim); }
.mt-tags--preview { margin-top: 10px; }

/* locations 配送区 chips（沿吊牌语言的静态小签） */
.area-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; margin-top: 8px; }
.area-chips .area-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 10px;
  background: color-mix(in srgb, var(--kraft) 42%, white);
  border: 1.5px dashed rgba(42, 31, 20, 0.38);
  font-weight: 600; font-size: 0.85rem; color: var(--ink);
}
.area-chips .area-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; border: 1.6px solid rgba(42, 31, 20, 0.55); flex-shrink: 0; }

/* ============================================================
   HOME rhythm shapes（2026-07-14 节奏手术：三个 Loop 没有的形状）
   ============================================================ */
/* 打包工序票 */
.pack-ticket {
  position: relative; max-width: 1020px; margin: 0 auto;
  background: var(--card); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); padding: 38px 42px 38px 66px;
}
.pt-tear { position: absolute; left: 32px; top: 16px; bottom: 16px; border-left: 2px dashed rgba(42, 31, 20, 0.3); }
.pt-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.pt-steps li + li { border-left: 2px dashed rgba(42, 31, 20, 0.16); padding-left: 30px; }
.pt-top { display: flex; align-items: center; gap: 10px; }
.pt-check { display: inline-flex; width: 22px; height: 22px; color: var(--ink); }
.pt-check svg { width: 100%; height: 100%; }
.pt-top .icon { width: 24px; height: 24px; color: var(--ink); }
.pt-steps h3 { font-family: var(--font-display); font-weight: 650; font-size: 1.12rem; color: var(--ink); margin-top: 10px; }
.pt-steps p { font-size: 0.92rem; line-height: 1.65; color: var(--ink-dim); margin-top: 8px; }

/* 柜台便签 */
.counter-note {
  position: relative; max-width: 560px; margin: 0 auto; text-align: center;
  background: color-mix(in srgb, var(--kraft) 86%, white);
  border-radius: var(--radius-md); box-shadow: 0 14px 34px rgba(42, 31, 20, 0.14);
  padding: 44px 38px 34px; transform: rotate(-0.8deg);
}
.cn-tape {
  position: absolute; top: -13px; left: 50%; width: 104px; height: 27px;
  background: rgba(255, 255, 255, 0.55); border-radius: 3px;
  transform: translateX(-50%) rotate(-2.4deg);
  box-shadow: 0 2px 6px rgba(42, 31, 20, 0.08);
}
.cn-title { font-family: var(--font-body); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim); }
.cn-line { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.08rem; line-height: 1.7; color: var(--ink-soft); margin-top: 14px; }
.counter-note .text-link { display: inline-block; margin-top: 18px; }

/* 垂签 CTA */
.section--dark.cta-hang-section { padding: 0 22px 76px; }
.cta-hang { display: flex; flex-direction: column; align-items: center; }
.cta-string { height: 76px; border-left: 2px dashed rgba(239, 217, 188, 0.4); }
.cta-tag {
  position: relative; text-align: center; max-width: 620px;
  background: color-mix(in srgb, var(--kraft) 86%, white);
  border-radius: 14px; outline: 1.5px dashed rgba(239, 217, 188, 0.45); outline-offset: 6px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
  padding: 46px 46px 40px; transform: rotate(0.7deg);
}
.cta-tag h2 { font-family: var(--font-display); font-weight: 650; font-size: clamp(1.7rem, 3.4vw, 2.3rem); line-height: 1.2; color: var(--ink); text-wrap: balance; }
.cta-sub { margin-top: 10px; font-family: var(--font-display); font-style: italic; color: var(--ink-dim); }
.cta-tag .btn-primary { margin-top: 22px; background: var(--ink); color: var(--milk); }

@media (max-width: 900px) {
  .pack-ticket { padding: 30px 26px 30px 56px; }
  .pt-steps { grid-template-columns: 1fr; gap: 24px; }
  .pt-steps li + li { border-left: none; border-top: 2px dashed rgba(42, 31, 20, 0.16); padding-left: 0; padding-top: 22px; }
}
@media (max-width: 560px) {
  .counter-note { transform: rotate(-0.5deg); padding: 38px 24px 30px; }
  .cta-tag { padding: 38px 26px 32px; }
  .cta-string { height: 56px; }
}

@media (max-width: 900px) {
  .mt-tags { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .mt-tags--mini { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .mt-tags { grid-template-columns: 1fr; gap: 34px; }
  .mt-tags--mini { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .mt-tag:nth-child(n) { transform: none; }
}

/* ============================================================
   VALUE CARDS — used on kraft (homepage "how we pack") and paper
   (about page, reusing the same 3-card content)
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border-top: 3px solid var(--kraft-deep);
  color: var(--ink);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.value-card-icon { margin-bottom: 20px; }
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.value-card p {
  font-size: 0.92rem;
  color: var(--ink-dim);
  line-height: 1.65;
}

/* ============================================================
   FAQ PREVIEW (homepage) — static, non-collapsing teaser list
   ============================================================ */
.faq-preview-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-preview-item h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.faq-preview-item p {
  font-size: 0.95rem;
  color: var(--ink-dim);
  line-height: 1.7;
  max-width: 68ch;
}

/* ============================================================
   CONTACT / FORMS — on paper
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 64px 0 80px;
}
.form-grid h2 {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(42, 31, 20, 0.25);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--card);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(42, 31, 20, 0.5); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(144, 224, 239, 0.3);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.contact-info { padding-top: 8px; }
.contact-info h3 {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--ink);
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-item .ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(42, 31, 20, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}
.contact-info-item .ci-text h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-info-item .ci-text p {
  font-size: 0.9rem;
  color: var(--ink-dim);
  line-height: 1.5;
}
.contact-info-item .ci-text a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   FAQ ACCORDION (dedicated /faq/ page) — on paper
   ============================================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 0 80px;
}
.faq-item { border-bottom: 1px solid rgba(42, 31, 20, 0.18); }
.faq-item summary {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink-dim);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary:hover { color: var(--ink-soft); }
.faq-item .faq-answer {
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--ink-dim);
  line-height: 1.7;
  max-width: 68ch;
}

/* ============================================================
   LOCATIONS / HOURS — on paper
   ============================================================ */
.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 64px 0 80px;
}
.location-content h2, .location-content h3 { font-family: var(--font-display); font-weight: 650; color: var(--ink); }
.location-content h2 { font-size: 1.4rem; margin-bottom: 8px; }
.location-content h3 { font-size: 1.1rem; margin-top: 32px; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.hours-table th,
.hours-table td {
  padding: 14px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(42, 31, 20, 0.18);
  text-align: left;
}
.hours-table th { font-weight: 700; color: var(--ink); }
.hours-table td { color: var(--ink-dim); }
.map-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: var(--card);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  font-size: 1rem;
  box-shadow: var(--shadow-card);
}

/* Service-area chip list (locations page) */
.area-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.area-chip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--card);
  color: var(--ink);
  box-shadow: var(--shadow-card);
}

/* ============================================================
   ABOUT / PROSE PAGES — on paper (also reused by our-packaging)
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  padding: 64px 0 80px;
}
.about-story h2 {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 20px;
}
.section--blue .about-story h2 { color: var(--blue-ink); }
.about-story p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 68ch;
}
.quick-facts {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px;
  align-self: start;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  box-shadow: var(--shadow-card);
}
.quick-facts h3 {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--ink);
}
.quick-fact {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(42, 31, 20, 0.12);
}
.quick-fact:last-child { border: none; margin: 0; padding: 0; }
.quick-fact-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  margin-bottom: 4px;
}
.quick-fact-value { font-size: 0.92rem; color: var(--ink); font-weight: 500; }
.quick-fact-value a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   FOOTER — near-black brown, cream text
   ============================================================ */
.footer {
  background: var(--footer-bg);
  padding: 64px 0 0;
  color: rgba(239, 217, 188, 0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 650;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--milk);
  margin-bottom: 14px;
}
.footer-logo small {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  display: block;
  margin-top: 4px;
  color: rgba(239, 217, 188, 0.7);
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(239, 217, 188, 0.7);
  max-width: 34ch;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--milk);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(239, 217, 188, 0.7);
  padding: 5px 0;
}
.footer-col a:hover { color: var(--milk); }
.footer-col p { font-size: 0.88rem; line-height: 1.6; color: rgba(239, 217, 188, 0.7); }
.footer-col p a { display: inline; padding: 0; color: rgba(239, 217, 188, 0.85); text-decoration: underline; text-underline-offset: 3px; }
.footer-col p a:hover { color: var(--milk); }

/* social row kept for architectural parity — unused (no social accounts live yet) */
.footer-social {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  justify-content: center;
  border-top: 1px solid rgba(239, 217, 188, 0.14);
}
.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-link,
.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(239, 217, 188, 0.1);
  color: var(--milk);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-link:hover,
.footer-social a:hover {
  background: var(--milk);
  color: var(--ink);
  transform: translateY(-2px);
}
.social-link svg, .footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(239, 217, 188, 0.14);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(239, 217, 188, 0.6);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  /* subpage nav collapses to hamburger */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* menu layout collapses */

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }
  .form-grid { grid-template-columns: 1fr; }
  .location-content { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .quick-facts { position: static; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .catering-features { grid-template-columns: 1fr; }

  .media-row { grid-template-columns: 1fr; gap: 28px; }
  .media-row-media { order: -1; }
}

@media (max-width: 720px) {
  :root { --nav-height: 60px; }
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-col--brand { grid-column: auto; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .media-row-media.two-up { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
}

/* Nav mobile menu open state */
.nav.open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--kraft);
  padding: 24px;
  gap: 16px;
  border-bottom: 1px solid rgba(42, 31, 20, 0.16);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}
.nav.open .nav-links a { font-size: 1.05rem; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tag-wrap { animation: none; }
  .hero-cta, .hero-cta:hover, .nav-order, .nav-order:hover,
  .btn-primary, .btn-primary:hover, .value-card, .value-card:hover, .social-link, .footer-social a,
  .hero-ahi .brand-nav .cta, .hero-ahi .brand-nav .cta:hover { transform: none; transition: none; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
