/* ==========================================================================
   China King — homepage design system
   Two families only: Cormorant Garamond (display) + Inter (UI/body).
   ========================================================================== */

:root {
  --ck-red: #B51F24;
  --ck-red-dark: #8F1519;
  --ck-charcoal: #161311;
  --ck-black: #0F0E0D;
  --ck-cream: #F8F4EC;
  --ck-warm-white: #FFFDF9;
  --ck-gold: #C99745;
  --ck-gold-muted: #B99152;
  --ck-text: #24201D;
  --ck-text-muted: #6D655E;
  --ck-border: #E7DED2;

  --ck-serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --ck-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ck-container: 1320px;
  --ck-gutter: 24px;
  --ck-section: 108px;
  --ck-radius: 4px;
  --ck-topbar-h: 42px;
  --ck-header-h: 84px;

  --ck-shadow-sm: 0 1px 2px rgba(22, 19, 17, .06), 0 4px 14px rgba(22, 19, 17, .05);
  --ck-shadow-md: 0 10px 34px rgba(22, 19, 17, .10);
  --ck-ease: cubic-bezier(.4, 0, .2, 1);
}

@media (max-width: 1024px) { :root { --ck-section: 82px; --ck-header-h: 76px; } }
@media (max-width: 640px)  { :root { --ck-section: 60px; --ck-gutter: 18px; } }

/* --- reset / base ------------------------------------------------------- */

.ck-page *, .ck-page *::before, .ck-page *::after { box-sizing: border-box; }

body.ck-body {
  margin: 0;
  background: var(--ck-warm-white);
  color: var(--ck-text);
  font-family: var(--ck-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.ck-page img { max-width: 100%; height: auto; display: block; }

.ck-page h1, .ck-page h2, .ck-page h3, .ck-page h4 {
  font-family: var(--ck-serif);
  color: var(--ck-charcoal);
  margin: 0;
  font-weight: 600;
  letter-spacing: -.01em;
}

.ck-page p { margin: 0; }
.ck-page ul { margin: 0; padding: 0; list-style: none; }

.ck-page a { color: inherit; text-decoration: none; }
.ck-page a:hover { color: var(--ck-red); }

/* visible, consistent focus for keyboard users */
.ck-page a:focus-visible,
.ck-page button:focus-visible,
.ck-page [tabindex]:focus-visible {
  outline: 3px solid var(--ck-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.ck-skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ck-charcoal); color: #fff;
  padding: 14px 22px; font-weight: 600; font-size: 15px;
}
.ck-skip:focus { left: 12px; top: 12px; color: #fff; }

.ck-container {
  width: 100%;
  max-width: var(--ck-container);
  margin-inline: auto;
  padding-inline: var(--ck-gutter);
}

.ck-section { padding-block: var(--ck-section); }

/* --- shared type ------------------------------------------------------- */

.ck-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ck-sans);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ck-red);
  margin: 0 0 18px;
}
.ck-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--ck-gold); flex: none;
}
.ck-eyebrow--center { justify-content: center; }
.ck-eyebrow--light { color: var(--ck-gold); }

.ck-h2 { font-size: clamp(38px, 4vw, 56px); line-height: 1.05; }
.ck-lede {
  font-size: 17px; line-height: 1.75; color: var(--ck-text-muted);
  max-width: 62ch; margin-top: 18px;
}

.ck-head { margin-bottom: 52px; }
.ck-head--center { text-align: center; }
.ck-head--center .ck-lede { margin-inline: auto; }
.ck-head--split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}

.ck-textlink {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ck-red);
  border-bottom: 1px solid rgba(181, 31, 36, .3);
  padding-bottom: 4px; min-height: 30px;
  transition: border-color .2s var(--ck-ease), gap .2s var(--ck-ease);
}
.ck-textlink:hover { color: var(--ck-red-dark); border-color: var(--ck-red); gap: 14px; }
.ck-textlink svg { flex: none; }

/* --- buttons ----------------------------------------------------------- */

.ck-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 32px;
  font-family: var(--ck-sans);
  font-size: 13.5px; font-weight: 600;
  letter-spacing: .11em; text-transform: uppercase;
  border-radius: var(--ck-radius); border: 1.5px solid transparent;
  cursor: pointer; text-align: center;
  transition: background-color .2s var(--ck-ease), color .2s var(--ck-ease),
              border-color .2s var(--ck-ease), transform .2s var(--ck-ease);
}
.ck-btn:hover { transform: translateY(-2px); }

.ck-btn--primary { background: var(--ck-red); color: #fff; }
.ck-btn--primary:hover { background: var(--ck-red-dark); color: #fff; }

.ck-btn--ghost {
  background: transparent; color: var(--ck-gold);
  border-color: rgba(201, 151, 69, .55);
}
.ck-btn--ghost:hover {
  background: rgba(201, 151, 69, .1); color: var(--ck-gold);
  border-color: var(--ck-gold);
}

.ck-btn--dark { background: var(--ck-charcoal); color: #fff; }
.ck-btn--dark:hover { background: var(--ck-black); color: #fff; }

.ck-btn--outline {
  background: transparent; color: var(--ck-charcoal); border-color: var(--ck-border);
}
.ck-btn--outline:hover {
  border-color: var(--ck-red); color: var(--ck-red); background: rgba(181, 31, 36, .04);
}

.ck-btn--sm { min-height: 44px; padding: 0 22px; font-size: 12.5px; }

/* Cascade correction.

   `.ck-page a { color: inherit }` further up is (0,1,1) and outranks the
   single-class button rules above, so every button rendered as a link took the
   colour of the text around it instead of its own. In the header that put
   charcoal glyphs on the red "Order Online" fill; it only looked right in the
   footer because the surrounding text is already light. Buttons rendered as
   <button> were unaffected, which is why it hid for so long.

   Scoped with .ck-page to outrank it, for every variant that sets a colour. */
.ck-page .ck-btn--primary,
.ck-page .ck-btn--primary:hover,
.ck-page .ck-btn--dark,
.ck-page .ck-btn--dark:hover { color: #fff; }

.ck-page .ck-btn--ghost,
.ck-page .ck-btn--ghost:hover { color: var(--ck-gold); }

.ck-page .ck-btn--outline { color: var(--ck-charcoal); }
.ck-page .ck-btn--outline:hover { color: var(--ck-red); }

/* ======================================================================
   1. Top information bar
   ====================================================================== */

.ck-topbar {
  background: var(--ck-black); color: rgba(255, 253, 249, .78);
  font-size: 13px; border-bottom: 1px solid rgba(201, 151, 69, .16);
}
.ck-topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: var(--ck-topbar-h);
}
.ck-topbar__group { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ck-topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.ck-topbar__item svg { color: var(--ck-gold); flex: none; }
.ck-topbar a.ck-topbar__item { min-height: 32px; }
.ck-topbar a:hover { color: #fff; }
.ck-topbar__sep { width: 1px; height: 14px; background: rgba(255, 253, 249, .18); }

.ck-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: #fff; background: var(--ck-red);
  padding: 5px 13px; border-radius: 100px;
}
.ck-status__dot {
  width: 7px; height: 7px; border-radius: 50%; background: #fff; flex: none;
}
.ck-status--closed { background: #3A3330; color: rgba(255, 253, 249, .8); }

@media (max-width: 1080px) { .ck-topbar__hide-md { display: none; } }
@media (max-width: 780px) {
  .ck-topbar { font-size: 12.5px; }
  .ck-topbar__inner { justify-content: center; min-height: 38px; }
  .ck-topbar__group--right { display: none; }
  .ck-topbar__hide-sm { display: none; }
}

/* ======================================================================
   2. Header
   ====================================================================== */

.ck-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ck-warm-white);
  border-bottom: 1px solid var(--ck-border);
  transition: box-shadow .25s var(--ck-ease);
}
.ck-header.is-stuck { box-shadow: var(--ck-shadow-sm); }

.ck-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; min-height: var(--ck-header-h);
}

.ck-logo { display: inline-flex; align-items: center; gap: 13px; }
.ck-logo img { width: auto; height: 52px; }
.ck-logo__mark {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  background: var(--ck-red); color: #fff;
  display: grid; place-items: center;
  font-family: var(--ck-serif); font-size: 25px; font-weight: 700; line-height: 1;
}
.ck-logo__text { display: flex; flex-direction: column; line-height: 1; }
.ck-logo__name {
  font-family: var(--ck-serif); font-size: 27px; font-weight: 700;
  letter-spacing: .012em; color: var(--ck-charcoal); text-transform: uppercase;
}
.ck-logo__sub {
  font-size: 9.5px; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--ck-text-muted); margin-top: 5px;
}
.ck-logo:hover .ck-logo__name { color: var(--ck-charcoal); }

.ck-nav { display: flex; align-items: center; gap: 34px; }
.ck-nav__link {
  position: relative; font-size: 14.5px; font-weight: 500;
  color: var(--ck-text); padding: 8px 0; min-height: 44px;
  display: inline-flex; align-items: center;
}
.ck-nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: var(--ck-red); transform: scaleX(0); transform-origin: left;
  transition: transform .22s var(--ck-ease);
}
.ck-nav__link:hover::after,
.ck-nav__link[aria-current="page"]::after { transform: scaleX(1); }
.ck-nav__link[aria-current="page"] { color: var(--ck-red); font-weight: 600; }

.ck-header__actions { display: flex; align-items: center; gap: 14px; }

.ck-burger {
  display: none; width: 46px; height: 46px; flex: none;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--ck-border);
  border-radius: var(--ck-radius); cursor: pointer; padding: 0;
}
.ck-burger span {
  display: block; width: 19px; height: 1.5px; background: var(--ck-charcoal);
  position: relative; transition: background .2s var(--ck-ease);
}
.ck-burger span::before, .ck-burger span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 1.5px;
  background: var(--ck-charcoal); transition: transform .22s var(--ck-ease);
}
.ck-burger span::before { top: -6px; }
.ck-burger span::after { top: 6px; }
.ck-burger[aria-expanded="true"] span { background: transparent; }
.ck-burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.ck-burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.ck-mobile-nav {
  display: none; border-top: 1px solid var(--ck-border);
  background: var(--ck-warm-white);
}
.ck-mobile-nav.is-open { display: block; }
.ck-mobile-nav ul { padding: 8px 0 20px; }
.ck-mobile-nav a {
  display: flex; align-items: center; min-height: 52px;
  padding: 0 var(--ck-gutter); font-size: 16px; font-weight: 500;
  border-bottom: 1px solid var(--ck-border);
}
.ck-mobile-nav a[aria-current="page"] { color: var(--ck-red); font-weight: 600; }
.ck-mobile-nav__cta { padding: 20px var(--ck-gutter) 4px; }
.ck-mobile-nav__cta .ck-btn { width: 100%; }

@media (max-width: 1000px) {
  .ck-nav, .ck-header__actions .ck-btn--desktop { display: none; }
  .ck-burger { display: inline-flex; }
  .ck-logo img { height: 44px; }
  .ck-logo__name { font-size: 23px; }
  .ck-logo__mark { width: 40px; height: 40px; font-size: 21px; }
}

/* ======================================================================
   3. Hero
   ====================================================================== */

.ck-hero {
  position: relative; isolation: isolate;
  min-height: 660px; display: flex; align-items: center;
  background: var(--ck-black); color: var(--ck-warm-white);
  padding-block: 96px 150px;
  overflow: hidden;
}
.ck-hero__media { position: absolute; inset: 0; z-index: -2; }
.ck-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 68% 50%; }
.ck-hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 14, 13, .95) 0%, rgba(15, 14, 13, .86) 34%,
                    rgba(15, 14, 13, .55) 58%, rgba(15, 14, 13, .32) 100%),
    linear-gradient(180deg, rgba(15, 14, 13, .5) 0%, rgba(15, 14, 13, 0) 30%,
                    rgba(15, 14, 13, .6) 100%);
}
.ck-hero__inner { position: relative; width: 100%; }
.ck-hero__copy { max-width: 620px; }

.ck-hero h1 {
  font-size: clamp(52px, 5.3vw, 78px);
  line-height: .96; font-weight: 600; color: var(--ck-warm-white);
  margin-bottom: 26px;
}
.ck-hero h1 em { font-style: normal; color: #E8595E; }
.ck-hero__lede {
  font-size: 17.5px; line-height: 1.72;
  color: rgba(255, 253, 249, .82); max-width: 50ch;
}
.ck-hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px;
}
.ck-hero .ck-eyebrow { color: var(--ck-gold); }
.ck-hero .ck-eyebrow::before { background: var(--ck-gold); }

.ck-hero__meta {
  display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 40px;
  padding-top: 26px; border-top: 1px solid rgba(255, 253, 249, .14);
  font-size: 13.5px; color: rgba(255, 253, 249, .7);
}
.ck-hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.ck-hero__meta svg { color: var(--ck-gold); flex: none; }

@media (max-width: 1000px) {
  .ck-hero { min-height: 560px; padding-block: 72px 132px; }
  .ck-hero__media img { object-position: 62% 50%; }
  .ck-hero__scrim {
    background:
      linear-gradient(180deg, rgba(15, 14, 13, .72) 0%, rgba(15, 14, 13, .82) 55%,
                      rgba(15, 14, 13, .94) 100%);
  }
}
@media (max-width: 640px) {
  .ck-hero { min-height: 0; padding-block: 56px 120px; }
  .ck-hero h1 { font-size: clamp(38px, 11vw, 46px); }
  .ck-hero__lede { font-size: 16px; }
  .ck-hero__actions { gap: 12px; }
  .ck-hero__actions .ck-btn { flex: 1 1 100%; }
}

/* ======================================================================
   4. Quick action bar
   ====================================================================== */

.ck-quick { position: relative; z-index: 3; margin-top: -78px; }
.ck-quick__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--ck-charcoal);
  border: 1px solid rgba(201, 151, 69, .3);
  border-radius: var(--ck-radius);
  box-shadow: var(--ck-shadow-md);
  overflow: hidden;
}
.ck-quick__item {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 26px; color: var(--ck-warm-white);
  border-right: 1px solid rgba(255, 253, 249, .1);
  transition: background-color .22s var(--ck-ease);
}
.ck-quick__item:last-child { border-right: 0; }
.ck-quick__item:hover { background: rgba(255, 253, 249, .05); color: var(--ck-warm-white); }
.ck-quick__icon {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(181, 31, 36, .8); color: #E8595E;
  transition: background-color .22s var(--ck-ease), color .22s var(--ck-ease);
}
.ck-quick__item:hover .ck-quick__icon { background: var(--ck-red); color: #fff; }
.ck-quick__text { min-width: 0; }
.ck-quick__title {
  font-family: var(--ck-sans); font-size: 13.5px; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; line-height: 1.3;
}
.ck-quick__sub {
  display: flex; align-items: center; gap: 7px; margin-top: 5px;
  font-size: 13px; color: rgba(255, 253, 249, .62); line-height: 1.4;
}
.ck-quick__sub svg { flex: none; transition: transform .22s var(--ck-ease); }
.ck-quick__item:hover .ck-quick__sub svg { transform: translateX(4px); }

@media (max-width: 1000px) {
  .ck-quick { margin-top: -68px; }
  .ck-quick__grid { grid-template-columns: repeat(2, 1fr); }
  .ck-quick__item:nth-child(2) { border-right: 0; }
  .ck-quick__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 253, 249, .1); }
}
@media (max-width: 480px) {
  .ck-quick__item { padding: 20px 18px; gap: 13px; }
  .ck-quick__icon { width: 40px; height: 40px; }
  .ck-quick__title { font-size: 12.5px; }
  .ck-quick__sub { font-size: 12px; }
}

/* ======================================================================
   5. Popular picks
   ====================================================================== */

.ck-picks__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 26px;
}
.ck-dish { display: block; color: inherit; }
.ck-dish__media {
  position: relative; overflow: hidden;
  border-radius: var(--ck-radius); background: var(--ck-cream);
  aspect-ratio: 4 / 3.25;
}
.ck-dish__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s var(--ck-ease);
}
.ck-dish:hover .ck-dish__media img { transform: scale(1.05); }
.ck-dish__tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(15, 14, 13, .78); color: var(--ck-warm-white);
  font-size: 10px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; padding: 5px 10px; border-radius: 100px;
  backdrop-filter: blur(4px);
}
.ck-dish__tag--spicy { background: rgba(181, 31, 36, .9); }
.ck-dish__name {
  font-family: var(--ck-serif); font-size: 21px; font-weight: 600;
  line-height: 1.25; margin-top: 17px; color: var(--ck-charcoal);
  transition: color .2s var(--ck-ease);
}
.ck-dish:hover .ck-dish__name { color: var(--ck-red); }
.ck-dish__meta {
  font-size: 12.5px; color: var(--ck-text-muted); margin-top: 6px;
  letter-spacing: .04em;
}

@media (max-width: 1200px) { .ck-picks__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (max-width: 760px)  { .ck-picks__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 380px)  {
  .ck-picks__grid { grid-template-columns: 1fr; }
  .ck-dish__name { font-size: 20px; }
}

/* ======================================================================
   6. Menu categories
   ====================================================================== */

.ck-cats { background: var(--ck-cream); }
.ck-cats__grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 20px;
}
.ck-cat {
  display: flex; flex-direction: column; align-items: center; gap: 15px;
  text-align: center; padding: 8px 4px;
}
.ck-cat__icon {
  width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ck-warm-white);
  border: 1px solid rgba(201, 151, 69, .45);
  color: var(--ck-red);
  transition: border-color .25s var(--ck-ease), background-color .25s var(--ck-ease),
              transform .25s var(--ck-ease);
}
.ck-cat:hover .ck-cat__icon {
  border-color: var(--ck-red); background: #fff; transform: translateY(-4px);
}
.ck-cat__label {
  font-size: 13.5px; font-weight: 600; color: var(--ck-charcoal);
  letter-spacing: .02em; line-height: 1.35;
}
.ck-cat:hover .ck-cat__label { color: var(--ck-red); }
.ck-cats__foot { text-align: center; margin-top: 56px; }

@media (max-width: 1100px) { .ck-cats__grid { grid-template-columns: repeat(4, 1fr); gap: 26px; } }
@media (max-width: 560px) {
  .ck-cats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 14px; }
  .ck-cat__icon { width: 72px; height: 72px; }
  .ck-cat__label { font-size: 13px; }
}

/* ======================================================================
   7. About
   ====================================================================== */

.ck-about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.ck-about__media { position: relative; }
.ck-about__media img {
  width: 100%; border-radius: var(--ck-radius);
  aspect-ratio: 7 / 5; object-fit: cover;
}
.ck-about__frame {
  position: absolute; inset: 18px -18px -18px 18px; z-index: -1;
  border: 1px solid rgba(201, 151, 69, .5); border-radius: var(--ck-radius);
}
.ck-about__body { display: grid; gap: 18px; }
.ck-about__body p { color: var(--ck-text-muted); font-size: 16.5px; }
.ck-about h2 { margin-bottom: 6px; }

.ck-benefits {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 26px; margin-top: 40px; padding-top: 36px;
  border-top: 1px solid var(--ck-border);
}
.ck-benefit { display: grid; gap: 11px; }
.ck-benefit__icon { color: var(--ck-red); }
.ck-benefit__title {
  font-family: var(--ck-sans); font-size: 14px; font-weight: 700;
  color: var(--ck-charcoal); line-height: 1.4;
}

@media (max-width: 1000px) {
  .ck-about__grid { grid-template-columns: 1fr; gap: 48px; }
  .ck-about__frame { display: none; }
}
@media (max-width: 560px) {
  .ck-benefits { grid-template-columns: 1fr; gap: 22px; }
}

/* ======================================================================
   8. Order CTA band
   ====================================================================== */

.ck-order {
  position: relative; isolation: isolate; text-align: center;
  color: var(--ck-warm-white); overflow: hidden;
  padding-block: 128px;
}
.ck-order__media { position: absolute; inset: 0; z-index: -2; }
.ck-order__media img { width: 100%; height: 100%; object-fit: cover; }
.ck-order__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(22, 19, 17, .9), rgba(15, 14, 13, .93));
}
.ck-order h2 {
  color: var(--ck-warm-white); font-size: clamp(36px, 3.8vw, 54px);
  line-height: 1.06; margin-bottom: 20px;
}
.ck-order__lede {
  font-size: 17px; color: rgba(255, 253, 249, .78);
  max-width: 54ch; margin: 0 auto 38px;
}
.ck-order__actions {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px;
}
@media (max-width: 640px) {
  .ck-order { padding-block: 88px; }
  .ck-order__actions .ck-btn { flex: 1 1 100%; }
}

/* ======================================================================
   9. Trust / reviews
   ====================================================================== */

.ck-trust__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px;
}
.ck-trust__card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  padding: 32px 30px; background: var(--ck-warm-white);
  border: 1px solid var(--ck-border); border-radius: var(--ck-radius);
  transition: border-color .22s var(--ck-ease), box-shadow .22s var(--ck-ease),
              transform .22s var(--ck-ease);
}
.ck-trust__card:hover {
  border-color: rgba(201, 151, 69, .6); box-shadow: var(--ck-shadow-sm);
  transform: translateY(-3px); color: inherit;
}
.ck-trust__icon { color: var(--ck-red); }
.ck-trust__title {
  font-family: var(--ck-serif); font-size: 22px; font-weight: 600; color: var(--ck-charcoal);
}
.ck-trust__text { font-size: 14.5px; color: var(--ck-text-muted); line-height: 1.65; }
.ck-trust__cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 2px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ck-red);
}
.ck-trust__card:hover .ck-trust__cta { color: var(--ck-red-dark); }
.ck-trust__note {
  margin-top: 30px; font-size: 13px; color: var(--ck-text-muted);
  text-align: center; font-style: italic;
}

@media (max-width: 900px) { .ck-trust__grid { grid-template-columns: 1fr; } }

/* ======================================================================
   10. Location & hours
   ====================================================================== */

.ck-loc { background: var(--ck-cream); }
.ck-loc__grid {
  display: grid; grid-template-columns: 1.08fr 1fr; gap: 60px; align-items: stretch;
}
.ck-loc__map {
  border-radius: var(--ck-radius); overflow: hidden; min-height: 460px;
  border: 1px solid var(--ck-border); background: #ded6c9;
}
.ck-loc__map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }

.ck-loc__panel { display: grid; align-content: center; gap: 0; }
.ck-info { display: flex; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--ck-border); }
.ck-info:last-of-type { border-bottom: 0; }
.ck-info__icon {
  width: 44px; height: 44px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ck-warm-white); border: 1px solid rgba(201, 151, 69, .45);
  color: var(--ck-red);
}
.ck-info__title {
  font-family: var(--ck-sans); font-size: 12px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ck-text-muted); margin-bottom: 8px;
}
.ck-info__body { font-size: 16.5px; line-height: 1.65; color: var(--ck-charcoal); }
.ck-info__body strong { font-weight: 600; }
.ck-info__body a:hover { color: var(--ck-red); }
.ck-hours { display: grid; gap: 5px; font-size: 15.5px; }
.ck-hours div { display: flex; justify-content: space-between; gap: 18px; max-width: 320px; }
.ck-hours dt { color: var(--ck-text-muted); }
.ck-hours dd { margin: 0; font-weight: 600; color: var(--ck-charcoal); }
.ck-hours .is-closed { color: var(--ck-red); }
.ck-loc__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }

@media (max-width: 1000px) {
  .ck-loc__grid { grid-template-columns: 1fr; gap: 40px; }
  .ck-loc__map, .ck-loc__map iframe { min-height: 320px; }
}
@media (max-width: 480px) {
  .ck-loc__actions .ck-btn { flex: 1 1 100%; }
  .ck-hours div { max-width: none; }
}

/* ======================================================================
   11. Footer
   ====================================================================== */

/* --- footer -------------------------------------------------------------
   Was five uneven columns of links - a link farm, with the contact column so
   narrow that "11:00 AM-10:30 PM" broke across lines, and a dead band beneath
   where the short columns stopped short of the tallest.

   Now three tiers: identity and navigation, then the address block set wide
   enough that the hours cannot wrap, then the legal line. The hours use the
   same table treatment as the Contact page, so the two agree.
   ---------------------------------------------------------------------- */

.ck-footer { background: var(--ck-charcoal); color: rgba(255, 253, 249, .68); }

/* wpautop still emits an orphan </p> after these blocks, which the browser
   renders as an empty paragraph; belt and braces alongside ck_tidy. */
.ck-footer p:empty { display: none; }

.ck-footer__top {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  padding-block: clamp(56px, 7vw, 88px) clamp(40px, 5vw, 60px);
  align-items: start;
}
.ck-footer__brand { max-width: 40ch; }
.ck-footer__blurb {
  font-size: 14.5px; line-height: 1.75; margin-top: 28px; max-width: 40ch;
  text-wrap: pretty;
}
.ck-footer__brand .ck-btn { margin-top: 26px; }

.ck-footer__nav {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.ck-footer h3 {
  font-family: var(--ck-sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ck-gold); margin-bottom: 20px;
}
.ck-footer a { color: rgba(255, 253, 249, .68); transition: color .18s var(--ck-ease); }
.ck-footer a:hover { color: #fff; }
.ck-footer__links li + li { margin-top: 11px; }
.ck-footer__links a {
  font-size: 14.5px; display: inline-flex; min-height: 26px; align-items: center;
}
.ck-footer .ck-logo__name { color: var(--ck-warm-white); }
.ck-footer .ck-logo__sub { color: var(--ck-gold-muted); }
.ck-footer .ck-logo:hover .ck-logo__name { color: #fff; }

/* the address block */
.ck-footer__nap {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  padding-block: clamp(30px, 3.4vw, 40px);
  border-top: 1px solid rgba(255, 253, 249, .1);
  align-items: start;
}
.ck-footer__naplabel {
  font-family: var(--ck-sans); font-size: 10.5px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255, 253, 249, .4); margin-bottom: 14px;
}
.ck-footer__napbody {
  font-family: var(--ck-serif); font-size: 18px; line-height: 1.5;
  color: rgba(255, 253, 249, .82);
}
.ck-footer__napbody a { color: inherit; }
.ck-footer__napbody--lg {
  font-size: 24px; letter-spacing: -.01em; font-variant-numeric: tabular-nums;
}

.ck-footer__hours { width: 100%; max-width: 34ch; border-collapse: collapse; margin: 0; }
.ck-footer__hours th, .ck-footer__hours td {
  padding: 5px 0; font-weight: 400; vertical-align: baseline; text-align: left;
}
.ck-footer__hours th {
  font-family: var(--ck-serif); font-size: 15.5px;
  color: rgba(255, 253, 249, .82); padding-right: 18px;
}
.ck-footer__hours td {
  font-family: var(--ck-sans); font-size: 12.5px;
  color: rgba(255, 253, 249, .55); text-align: right;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.ck-footer__hours tr.is-closed td { color: rgba(214, 90, 95, .9); }

.ck-footer__bottom {
  border-top: 1px solid rgba(255, 253, 249, .1);
  padding-block: 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; font-size: 13px;
}
.ck-footer__legal { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ck-footer__credits {
  font-size: 12px; line-height: 1.6;
  color: rgba(255, 253, 249, .38);
  padding-bottom: 26px;
}

@media (max-width: 900px) {
  .ck-footer__top { grid-template-columns: minmax(0, 1fr); }
  .ck-footer__nap { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
}
@media (max-width: 560px) {
  .ck-footer__nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ck-footer__nap { grid-template-columns: minmax(0, 1fr); }
  .ck-footer__bottom { justify-content: flex-start; }
  .ck-footer__brand .ck-btn { width: 100%; }
}

/* ======================================================================
   12. Mobile sticky action bar
   ====================================================================== */

.ck-dock {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  background: var(--ck-charcoal);
  border-top: 1px solid rgba(201, 151, 69, .28);
  padding-bottom: env(safe-area-inset-bottom);
}
.ck-dock__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.ck-dock__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; min-height: 60px; padding: 8px 4px;
  color: rgba(255, 253, 249, .82);
  font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  border-right: 1px solid rgba(255, 253, 249, .1);
}
.ck-dock__item:last-child { border-right: 0; }
.ck-dock__item svg { color: var(--ck-gold); }
.ck-dock__item--order { background: var(--ck-red); color: #fff; }
.ck-dock__item--order svg { color: #fff; }
.ck-dock__item:hover, .ck-dock__item:focus-visible { color: #fff; }

@media (max-width: 780px) {
  .ck-dock { display: block; }
  body.ck-body { padding-bottom: 60px; }
}

/* ======================================================================
   Motion
   ====================================================================== */

.ck-reveal { opacity: 0; transform: translateY(18px); }
.ck-reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ck-ease), transform .6s var(--ck-ease);
}

@media (prefers-reduced-motion: reduce) {
  .ck-page *, .ck-page *::before, .ck-page *::after {
    animation-duration: .01ms !important; transition-duration: .01ms !important;
  }
  .ck-reveal { opacity: 1; transform: none; }
  .ck-btn:hover, .ck-trust__card:hover, .ck-cat:hover .ck-cat__icon { transform: none; }
  .ck-dish:hover .ck-dish__media img { transform: none; }
}

/* ======================================================================
   Neutralise Twenty Twenty-Five chrome on templates that use these parts
   ====================================================================== */

.ck-page .wp-site-blocks > * { margin-block-start: 0; }
.ck-page .wp-site-blocks { padding: 0; }
.ck-page .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none; margin-inline: 0;
}
.ck-page .entry-content > * { margin-block-start: 0; }

/* print: keep it readable, drop the furniture */
@media print {
  .ck-topbar, .ck-header, .ck-dock, .ck-quick, .ck-order, .ck-hero__media { display: none !important; }
  body.ck-body { padding-bottom: 0; }
}

/* ======================================================================
   Inner pages: page header, prose, menu listing
   ====================================================================== */

.ck-pagehead {
  background: var(--ck-charcoal); color: var(--ck-warm-white);
  padding-block: 74px 66px; text-align: center;
}
.ck-pagehead h1 {
  color: var(--ck-warm-white); font-size: clamp(38px, 4.4vw, 60px); line-height: 1.04;
}
.ck-pagehead__crumbs {
  display: flex; justify-content: center; gap: 9px; flex-wrap: wrap;
  font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255, 253, 249, .55); margin-top: 18px;
}
.ck-pagehead__crumbs a { color: var(--ck-gold); }
.ck-pagehead__crumbs a:hover { color: #fff; }

.ck-pagebody { padding-block: var(--ck-section); }

/* Pages that render their own full layout set their own rhythm, from the
   masthead down to the closing call to action. They were getting this generic
   page padding on top of it, which put 108px of empty space above every
   masthead and the same again between the last button and the footer - 192px
   of nothing at the bottom of the specials page, 210px on About. The pages
   that still use the generic page header keep it. */
body.ck-has-menu .ck-pagebody,
body.ck-has-about .ck-pagebody,
body.ck-has-contact .ck-pagebody,
body.ck-has-guides .ck-pagebody,
body.ck-has-specials .ck-pagebody { padding-block: 0; }

.ck-prose { max-width: 74ch; margin-inline: auto; }
.ck-prose > * + * { margin-top: 20px; }
.ck-prose h2 {
  font-size: clamp(26px, 2.4vw, 34px); line-height: 1.2; margin-top: 42px;
}
.ck-prose p { color: var(--ck-text-muted); }
.ck-prose .ck-lede { font-size: 19px; color: var(--ck-text); }
.ck-prose a { color: var(--ck-red); text-decoration: underline; text-underline-offset: 3px; }
.ck-prose a:hover { color: var(--ck-red-dark); }
.ck-prose a.ck-btn { text-decoration: none; color: #fff; }
.ck-prose a.ck-btn--outline { color: var(--ck-charcoal); }
.ck-prose strong { color: var(--ck-charcoal); }
