/* The Kickin' Crab — home page styles
   Ported from "Kickin Crab Home.dc.html". Tokens first, then components in page order. */

:root {
  --cream: #F9F6F1;
  --cream-2: #F7ECD8;
  --sand: #EFE6DA;
  --sand-2: #E9E0D2;
  --sand-3: #E0D3C2;
  --sand-4: #DCCDBA;
  --blush: #F6E9E2;
  --brown: #3A1D15;
  --brown-2: #55443A;
  --brown-3: #5E4939;
  --teal: #1F3E47;
  --teal-2: #35545E;
  --brick: #A53C2C;
  --brick-dark: #7E2D21;
  --orange: #D6632A;
  --red: #C8321E;
  --red-dark: #A82818;
  --gold: #E8A317;
  --peach: #F4C98A;
  --amber: #f4a83a;
  --font-body: 'Figtree', system-ui, sans-serif;
  --font-display: 'Caprasimo', cursive;
  --font-marker: 'Permanent Marker', cursive;
  --gutter: clamp(20px, 5vw, 48px);
}

/* ---------- Base ---------- */
html { background: var(--sand-2); }
body {
  margin: 0;
  overflow-wrap: anywhere;   /* long words break instead of overflowing, at any width */
  background: var(--cream);
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after { box-sizing: border-box; }
a { color: var(--brick); }
a:hover { color: var(--brick-dark); }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid #FFF7E8;
  outline-offset: 2px;
  box-shadow: 0 0 0 7px var(--brick-dark);
  border-radius: 6px;
}
img { max-width: 100%; }
button { font: inherit; }

.vh {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}
[hidden] { display: none !important; }

.kc-skip {
  position: absolute; left: -9999px; top: 0; z-index: 90;
  background: var(--brick); color: var(--cream);
  padding: 10px 16px; border-radius: 999px; text-decoration: none;
}
.kc-skip:focus { position: static; display: inline-block; left: auto; margin: 12px; color: var(--cream); }

/* Shared pieces */
.kc-eyebrow {
  font-size: 13px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brick);
}
.kc-h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 5vw, 54px); line-height: 1.05;
  margin: 12px 0 0; text-transform: uppercase; color: var(--brown);
}
.kc-rule { width: 110px; height: 10px; background: var(--orange); margin-top: 18px; }
.kc-lede { font-size: 17px; line-height: 1.55; margin: 24px 0 0; color: var(--brown-2); }

.kc-pill {
  display: flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 8px; border-radius: 999px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap; cursor: pointer; flex: 1 1 0;
}
.kc-pill--solid { background: var(--red); color: #FFFFFF; border: 0; }
.kc-pill--solid:hover { background: var(--red-dark); color: #FFFFFF; }
.kc-pill--outline { background: transparent; border: 2px solid var(--brown); color: var(--brown); }
.kc-pill--outline:hover { background: var(--blush); color: var(--brown); }

.kc-btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 28px; border: none; border-radius: 999px;
  background: var(--red); color: #FFFFFF;
  font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  text-decoration: none; cursor: pointer;
}
.kc-btn-primary:hover { background: var(--red-dark); color: #FFFFFF; }

.kc-input {
  flex: 1 1 200px; min-width: 0; height: 52px;
  border: 2px solid var(--brown); border-radius: 999px; padding: 0 22px;
  font-size: 16px; font-family: var(--font-body); color: var(--brown);
}

/* ---------- Announcement bar ---------- */
/* Shared with site.css (kept identical so the bar does not jump between pages) */
.kc-announce { background: #A53C2C; }
.kc-announce__row {
  max-width: 1080px; margin: 0 auto; padding: 6px 24px; box-sizing: border-box;
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; min-height: 48px;
}
.kc-announce__badge {
  flex: none; display: flex; align-items: center; gap: 8px;
  background: #f7ecd8; color: #2a1408;
  font-size: clamp(10px, 2.6vw, 12px); font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px clamp(9px, 2.4vw, 12px); border-radius: 999px;
}
.kc-announce__badge::before { content: ""; width: 7px; height: 7px; background: #A33F12; border-radius: 50%; }
.kc-cities {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  font-size: clamp(11.5px, 2.9vw, 14px); font-weight: 700; color: #f7ecd8;
}
.kc-dot { width: 5px; height: 5px; background: #f4a83a; border-radius: 50%; }
@media (max-width: 760px) {
  .kc-dot { display: none; }
  .kc-cities { column-gap: 16px; row-gap: 2px; }
}

/* ---------- Nav bar ---------- */
.kc-nav {
  background: #0f4450; border-bottom: 2px solid #D6632A;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28); position: relative; z-index: 5;
}
.kc-nav__row {
  max-width: 1080px; margin: 0 auto; padding: 0 24px; box-sizing: content-box;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; min-height: 96px;
}
.kc-nav__logo { display: flex; align-items: center; min-height: 44px; text-decoration: none; }
.kc-nav__logo img { height: 64px; width: auto; display: block; }
.kc-desk-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.kc-desk-nav a {
  font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  color: #f7ecd8; text-decoration: none; padding: 14px 14px; white-space: nowrap;
}
.kc-desk-nav a:hover { color: #ffffff; text-decoration: underline; }
.kc-desk-nav a[aria-current="page"] {
  color: #ffffff; text-decoration: underline; text-underline-offset: 6px;
  text-decoration-thickness: 3px; text-decoration-color: #f4a83a;
}
.kc-burger {
  display: none; width: 48px; height: 48px; background: #0f4450;
  border: 2px solid #f7ecd8; border-radius: 8px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer;
}
.kc-burger:hover { border-color: #f4a83a; }
.kc-burger__bar { width: 20px; height: 3px; background: #f7ecd8; border-radius: 2px; }
@media (max-width: 900px) {
  .kc-desk-nav { display: none; }
  .kc-burger { display: flex; }
}

/* ---------- Mobile nav panel ---------- */
.kc-mobile-nav {
  position: fixed; inset: 0; z-index: 80; background: var(--teal);
  padding: 20px; display: flex; flex-direction: column; overflow-y: auto;
}
.kc-mobile-nav__top { display: flex; align-items: center; justify-content: space-between; }
.kc-mobile-nav__top img { height: 36px; width: auto; display: block; }
.kc-mobile-nav__close {
  width: 44px; height: 44px; background: var(--teal); border: 2px solid var(--cream);
  border-radius: 8px; color: #FFFFFF; font-size: 20px; font-weight: 700; cursor: pointer;
}
.kc-mobile-nav__close:hover { border-color: var(--orange); color: var(--orange); }
.kc-mobile-nav__links { display: flex; flex-direction: column; margin-top: 40px; }
.kc-mobile-nav__links a {
  font-family: var(--font-display); font-weight: 400; font-size: 36px; text-transform: uppercase;
  color: #FFFFFF; text-decoration: none; padding: 12px 0;
}
.kc-mobile-nav__links a:hover { color: var(--orange); }

/* ---------- Hero ---------- */
main { display: block; }
.kc-hero {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  background: var(--teal);
}
.kc-hero-copy {
  display: flex; flex-direction: column; gap: clamp(20px, 2.4vw, 26px); justify-content: center;
  max-width: 740px;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 56px) clamp(44px, 6vw, 88px) clamp(20px, 4vw, 48px);
}
.kc-hero__h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 4.4vw, 68px); line-height: 1.02; margin: 0; text-wrap: balance;
  color: var(--cream); text-transform: uppercase; letter-spacing: -0.01em;
}
.kc-hero__h1 .line { display: block; }
.kc-hero__h1 .scrawl {
  display: inline;   /* wraps at narrow widths; box-decoration-break keeps the scrawl under each line */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 22' preserveAspectRatio='none'%3E%3Cpath d='M6 13C96 5 214 3 414 8' fill='none' stroke='%23D6632A' stroke-width='7' stroke-linecap='round'/%3E%3Cpath d='M14 20C110 13 226 12 402 16' fill='none' stroke='%23D6632A' stroke-width='4' stroke-linecap='round' opacity='0.75'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: 0 100%; background-size: 100% 0.22em;
  padding-bottom: 0.26em; -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.kc-hero__p { font-size: clamp(18px, 1.75vw, 24px); line-height: 1.45; color: var(--cream); margin: clamp(10px, 1.4vw, 20px) 0 0; max-width: 44ch; }
.kc-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
.kc-hero-cta {
  display: flex; align-items: center; justify-content: center; min-height: 52px;
  font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  text-decoration: none; border-radius: 6px;
  box-sizing: border-box; min-width: min(220px, 100%); padding: 0 28px; border: 2px solid transparent;
}
/* Bright red with white text: 5.3:1 (WCAG AA). Filled primary next to the outlined secondary. */
.kc-hero-cta--order { background: var(--red); border-color: var(--red); color: #FFFFFF; }
.kc-hero-cta--order:hover { background: var(--red-dark); border-color: var(--red-dark); color: #FFFFFF; }
.kc-hero-cta--find { border-color: var(--cream); color: var(--cream); }
.kc-hero-cta--find:hover { background: rgba(249, 246, 241, 0.14); color: var(--cream); }
.kc-hero-media { position: relative; overflow: hidden; min-height: clamp(280px, 45vw, 640px); }
.kc-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 40% 50%; display: block; }
.kc-fade-x {
  display: block; position: absolute; top: 0; bottom: 0; left: 0; width: 22%;
  background: linear-gradient(to right, #1F3E47 0%, rgba(31,62,71,0.7) 22%, rgba(31,62,71,0.25) 50%, rgba(31,62,71,0) 78%);
}
.kc-fade-y {
  display: none; position: absolute; left: 0; right: 0; bottom: 0; height: 150px;
  background: linear-gradient(to top, #1F3E47 0%, rgba(31,62,71,0.7) 22%, rgba(31,62,71,0.25) 50%, rgba(31,62,71,0) 78%);
}
@media (max-width: 1080px) {
  .kc-hero { grid-template-columns: minmax(0, 1fr); }
  .kc-hero-media { order: -1; min-height: 0; height: clamp(260px, 62vw, 360px); }
  .kc-hero-copy { padding-top: 16px; }
  .kc-fade-x { display: none; }
  .kc-fade-y { display: block; }
}
@media (max-width: 520px) { .kc-hero-cta { width: 100%; } }

/* ---------- Claim strip ---------- */
.kc-claims {
  background: var(--brick); border-top: 4px solid var(--brick-dark); border-bottom: 4px solid var(--brick-dark);
  padding: clamp(13px, 2vw, 18px) 0; overflow: hidden; position: relative;
}
/* Ticker: two identical lists slide left; the second takes over as the first leaves. */
.kc-ticker { display: flex; width: max-content; }
.kc-claims ul {
  list-style: none; margin: 0; padding: 0; flex: none;
  display: flex; align-items: center; gap: clamp(18px, 2.6vw, 34px); padding-right: clamp(18px, 2.6vw, 34px);
  animation: kc-ticker 26s linear infinite;
}
.kc-claims:hover ul, .kc-claims.is-paused ul { animation-play-state: paused; }
/* Pause / play control (WCAG 2.2.2: moving content must be pausable by keyboard and touch too). */
.kc-ticker-btn {
  position: absolute; top: 50%; right: 12px; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 999px; border: 2px solid var(--cream); background: var(--brick-dark); color: var(--cream);
  display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0;
  box-shadow: 0 0 0 6px var(--brick);
}
.kc-ticker-btn:hover { background: var(--cream); color: var(--brick-dark); }
.kc-ticker-btn:focus-visible { outline: 3px solid var(--cream); outline-offset: 3px; }
.kc-ticker-btn__play, .kc-claims.is-paused .kc-ticker-btn__pause { display: none; }
.kc-claims.is-paused .kc-ticker-btn__play { display: block; }
.kc-claims .kc-ticker { padding-right: 72px; }
.kc-claims li {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(17px, 2.3vw, 25px); letter-spacing: .02em;
  line-height: 1.15; color: var(--cream); white-space: nowrap;
}
.kc-claim-sep { display: flex; flex: none; }
.kc-claim-sep img { width: clamp(28px, 3vw, 38px); height: auto; display: block; }
@keyframes kc-ticker { from { transform: translateX(0); } to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) {
  .kc-ticker { width: auto; justify-content: center; }
  .kc-claims ul { animation: none; flex-wrap: wrap; justify-content: center; padding: 0 16px; }
  .kc-claims ul + ul, .kc-claims ul li:last-child, .kc-ticker-btn { display: none; }
  .kc-claims .kc-ticker { padding-right: 0; }
}
@media (max-width: 760px) {
  .kc-dot { display: none; }
  .kc-cities { column-gap: 16px; row-gap: 2px; }
}

/* ---------- Build your boil ---------- */
.kc-byb {
  position: relative; background: var(--cream);
  padding: clamp(48px, 6.4vw, 84px) var(--gutter) clamp(52px, 6.4vw, 88px);
}
.kc-byb__head { position: relative; text-align: center; max-width: 840px; margin: 0 auto; }
.kc-byb__kicker { font-size: 12.5px; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brown-3); }
.kc-byb__h2 {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 6vw, 64px);
  line-height: 1; margin: 12px 0 0; text-transform: uppercase; color: var(--teal);
}
.kc-byb__lede {
  font-size: clamp(17px, 2vw, 20px); font-weight: 600; line-height: 1.45;
  color: var(--brown); margin: 16px auto 0; max-width: 46ch;
}
.kc-byb-grid {
  position: relative; display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(22px, 2.8vw, 34px); margin: clamp(34px, 4.4vw, 50px) auto 0; max-width: 1120px; align-items: start;
}
.kc-step { min-width: 0; }
.kc-step__head { display: flex; align-items: baseline; gap: 11px; }
.kc-step__num { font-size: 22px; font-weight: 800; letter-spacing: 0.02em; color: var(--teal); }
.kc-step__h3 {
  font-size: clamp(15px, 1.9vw, 17px); font-weight: 800; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--teal); margin: 0;
}
.kc-step__list {
  list-style: none; margin: 12px 0 0; padding: 0; max-width: 44ch;
  display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 0 20px;
}
.kc-byb__extras { text-align: center; margin: 28px auto 0; font-size: 16px; color: var(--brown-2); }
.kc-byb__extras strong { color: var(--brown); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; font-size: 14px; margin-right: 4px; }
.kc-step__list--two { grid-template-columns: repeat(auto-fit, minmax(125px, 1fr)); }
/* Nine catches: fill down the columns (5 + 4) so no item is stranded on its own row. */
.kc-step__list--catch { grid-template-columns: max-content minmax(0, 1fr); column-gap: 28px; grid-template-rows: repeat(5, auto); grid-auto-flow: column; }
.kc-step__list--catch li span:last-child { white-space: nowrap; }
@media (max-width: 360px) { .kc-step__list--catch { grid-template-columns: minmax(0, 1fr); grid-template-rows: none; grid-auto-flow: row; } }
.kc-step__list li {
  display: flex; align-items: center; gap: 11px; padding: 7px 0;
  font-size: 14.5px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--brown);
}
.kc-step__box { flex: none; width: 15px; height: 15px; border: 2px solid var(--teal); border-radius: 3px; }
.kc-step__list li > span:not(.kc-step__box):not(.kc-peppers) { min-width: 0; }
.kc-peppers { display: flex; align-items: center; gap: 2px; flex: none; margin-left: 12px; }
.kc-peppers svg { width: 12px; height: 12px; fill: var(--brick); stroke: var(--brick); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.kc-step__note { font-size: 13.5px; line-height: 1.5; color: var(--brown-3); margin: 16px 0 0; max-width: 40ch; }
.kc-byb-div { position: relative; width: 1px; background: var(--sand-4); align-self: stretch; min-height: 190px; }
.kc-byb-div span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--cream); padding: 10px 2px; display: flex;
}
.kc-byb__foot {
  position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 20px 32px; margin: clamp(36px, 4.4vw, 52px) auto 0;
}
.kc-scrawl {
  font-family: var(--font-marker); font-size: clamp(17px, 2.1vw, 21px); line-height: 1.25;
  color: var(--teal); margin: 0; transform: rotate(-2deg);
}
.kc-scrawl span { display: block; height: 4px; border-radius: 3px; background: var(--orange); margin-top: 6px; }
.kc-byb__cta {
  display: flex; align-items: center; min-height: 52px; padding: 0 30px; border-radius: 999px;
  background: var(--red); color: #FFFFFF; font-size: 14px; font-weight: 800; letter-spacing: 0.05em;
  text-transform: uppercase; text-decoration: none;
}
.kc-byb__cta:hover { background: var(--red-dark); color: #FFFFFF; }
@media (max-width: 900px) {
  .kc-byb-grid { grid-template-columns: minmax(0, 1fr); }
  .kc-byb-div { display: none; }
}
@media (max-width: 430px) {
  .kc-step__list { grid-template-columns: minmax(0, 1fr) !important; }
}

/* ---------- Locations ---------- */
.kc-locate {
  padding: clamp(56px, 8vw, 96px) var(--gutter) clamp(40px, 5vw, 60px); background: var(--sand);
  border-top: 3px solid var(--brown);
}
.kc-locate__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: 56px; align-items: start;
}
.kc-locate__form { margin-top: 32px; }
.kc-locate__form label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.kc-locate__row { display: flex; flex-wrap: wrap; gap: 12px; }
.kc-locate__row .kc-input { background: #FFFFFF; }
.kc-locate__row .kc-btn-primary { flex: 1 1 auto; }
.kc-browse { margin-top: 22px; }
.kc-browse__label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.kc-select {
  -webkit-appearance: none; appearance: none; display: block; width: 100%; max-width: 320px; height: 46px;
  border: 2px solid var(--teal); border-radius: 999px; padding: 0 44px 0 20px; background-color: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23F7ECD8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 18px center;
  font-size: 15px; font-family: var(--font-body); font-weight: 700; color: var(--cream-2); cursor: pointer;
}
.kc-select:hover { background-color: #163038; border-color: #163038; }
.kc-select option { color: var(--brown); background: #FFFFFF; }
.kc-select:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.kc-map-frame { background: #FFFFFF; border: 3px solid var(--brown); padding: 18px; }
.kc-map-frame iframe { width: 100%; height: 470px; border: none; display: block; }
.kc-map-foot { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.kc-map-foot__hint { font-family: var(--font-marker); font-size: 20px; color: var(--brick); }
.kc-map-foot__line { flex: 1; height: 2px; background: var(--sand-3); }
.kc-map-foot__all {
  display: flex; align-items: center; min-height: 44px; font-size: 15px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--brick); text-decoration: none;
}
.kc-map-foot__all:hover { color: var(--brick-dark); }
.kc-results-wrap { margin-top: 0; }   /* takes no room until there is a search result */
.kc-status { width: 100%; margin: 0; font-size: 15px; font-weight: 700; color: var(--brick); }
.kc-status:not(:empty) { margin-top: clamp(24px, 3vw, 36px); }
.kc-results {
  width: 100%; list-style: none; margin: 12px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px;
}
.kc-result {
  background: #FFFFFF; border: 2px solid var(--sand-3); border-radius: 10px; padding: 14px 16px 14px;
  display: flex; flex-direction: column; gap: 2px; min-width: 0;
}
.kc-result.is-picked { border-color: var(--red); }
.kc-result h4 { margin: 0; font-size: 17px; font-weight: 800; line-height: 1.2; color: var(--brown); }
.kc-result address { margin: 4px 0 0; font-style: normal; font-size: 15px; line-height: 1.4; color: var(--brown-2); }
.kc-result__top { display: flex; gap: 16px; align-items: flex-start; justify-content: space-between; }
.kc-result__where { flex: 1 1 auto; min-width: 0; }
.kc-result__hours { flex: 0 0 auto; padding-left: 16px; border-left: 2px solid var(--sand-2); }
.kc-result__label { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brick); }
.kc-result__hours ul { list-style: none; margin: 3px 0 0; padding: 0; }
.kc-result__hours li { display: flex; gap: 10px; justify-content: space-between; font-size: 13px; line-height: 1.45; color: var(--brown-2); white-space: nowrap; }
.kc-result__days { font-weight: 700; color: var(--brown); }
@media (max-width: 1100px) and (min-width: 900px) { .kc-result__top { flex-direction: column; gap: 10px; } .kc-result__hours { padding-left: 0; border-left: 0; } }
@media (max-width: 620px) { .kc-result__top { flex-direction: column; gap: 10px; } .kc-result__hours { padding-left: 0; border-left: 0; } }
.kc-result__actions { display: flex; gap: 8px; margin-top: auto; padding-top: 12px; }
@media (max-width: 899px) { .kc-results { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .kc-results { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Now open ---------- */
.kc-now {
  position: relative; padding: clamp(48px, 6.4vw, 80px) var(--gutter) clamp(52px, 6.4vw, 84px);
  background-color: #4A2A1C;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.28) 0 2px, transparent 2px 118px),
    repeating-linear-gradient(0deg, transparent 0 7px, rgba(255,235,205,0.035) 7px 8px, transparent 8px 19px),
    repeating-linear-gradient(90deg, rgba(255,225,190,0.025) 0 1px, transparent 1px 63px),
    linear-gradient(90deg, rgba(0,0,0,0.22), transparent 18%, transparent 82%, rgba(0,0,0,0.22)),
    linear-gradient(180deg, #56321F, #3E2216);
  background-size: 100% 118px, 100% 19px, 63px 100%, 100% 100%, 100% 100%;
  border-top: 6px solid #2A1610; border-bottom: 6px solid #2A1610;
}
.kc-now__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: clamp(16px, 3vw, 40px); }
.kc-now__head > div { min-width: 0; flex: 1 1 260px; }
.kc-now__eyebrow { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--peach); }
.kc-now__eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--peach); flex: none; }
.kc-now__h2 { color: var(--cream); }
.kc-now__rule { width: 110px; height: 8px; background: var(--orange); margin-top: 16px; }
.kc-now__all {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding-bottom: 4px;
  font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--cream);
  text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--orange); text-decoration-thickness: 2px;
}
.kc-now__all:hover { color: #FFFFFF; }
.kc-now-grid {
  list-style: none; margin: clamp(26px, 3.4vw, 38px) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 1.6vw, 18px);
}
.kc-now-card {
  background: var(--cream); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35); min-width: 0;
}
.kc-now-card__img { height: clamp(140px, 14vw, 180px); background: var(--teal) center/cover no-repeat; }
.kc-now-card__body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 3px; flex: 1 1 auto; min-width: 0; }
.kc-now-card__region { margin: 0; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brick); }
.kc-now-card h3 {
  margin: 0; font-family: var(--font-display); font-weight: 400; font-size: clamp(19px, 1.9vw, 22px);
  line-height: 1.05; text-transform: uppercase; color: var(--brown);
}
.kc-now-card address { margin: 2px 0 0; font-style: normal; font-size: 13px; line-height: 1.35; color: var(--brown); }
.kc-now-card__actions { display: flex; gap: 6px; margin-top: auto; padding-top: 10px; }
@media (max-width: 899px) { .kc-now-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .kc-now-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- The Kickin' Crab Experience (photo wall) ---------- */
.kc-nation {
  padding: clamp(52px, 7vw, 88px) var(--gutter) clamp(56px, 8vw, 96px);
  background: var(--cream); border-top: 3px solid var(--brown);
}
.kc-nation__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: clamp(20px, 3vw, 48px); }
.kc-nation__head > div { min-width: 0; flex: 1 1 260px; }
.kc-nation__lede { max-width: 560px; }
.kc-nation__follow {
  display: flex; align-items: center; min-height: 44px; border: 2px solid var(--brown); color: var(--brown);
  font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  text-decoration: none; padding: 0 26px; border-radius: 6px;
}
.kc-nation__follow:hover { border-color: var(--brick); color: var(--brick); }
.kc-nation__grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px; margin-top: 52px;
}
@media (max-width: 899px) { .kc-nation__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .kc-nation__grid { grid-template-columns: minmax(0, 1fr); } }
.kc-polaroid { position: relative; transform: rotate(-1deg); }
.kc-polaroid:nth-child(even) { transform: rotate(1deg); }
.kc-polaroid > div:first-child { height: 300px; overflow: hidden; }
.kc-polaroid img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kc-tape {
  position: absolute; top: -11px; left: 50%; width: 96px; height: 26px;
  background: var(--orange); opacity: 0.92; box-shadow: 0 2px 6px rgba(58, 29, 21, 0.18);
  transform: translateX(-50%) rotate(var(--tilt, -5deg));
}

/* ---------- Footer ---------- */
.kc-footer { background: var(--teal); padding: clamp(40px, 5vw, 56px) var(--gutter) 36px; }
.kc-footer__fine { font-size: 13px !important; color: var(--cream); margin: 10px 0 0 !important; }
.kc-footcols {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(240px, 1.6fr) minmax(140px, 1fr) minmax(180px, 1fr);
  gap: clamp(24px, 4vw, 48px); align-items: start;
}
.kc-footbrand img { height: 46px; width: auto; display: block; }
.kc-footbrand p { font-size: 15px; line-height: 1.5; color: var(--cream); margin: 14px 0 0; max-width: 360px; }
.kc-footbrand__find {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; min-height: 42px; padding: 0 22px;
  border-radius: 999px; background: #A33F12; color: #ffffff;
  font-size: 14px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
}
.kc-footbrand__find:hover { background: #8A340D; color: #ffffff; }
.kc-footbrand .kc-copy { font-size: 13px; margin-top: 16px; }
.kc-footnav { display: flex; flex-direction: column; gap: 2px; }
.kc-footnav__title { font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); padding-bottom: 6px; }
.kc-footnav__title--amber { color: var(--amber); padding-bottom: 8px; }
.kc-footnav a { display: flex; align-items: center; min-height: 36px; font-size: 15px; color: var(--cream); text-decoration: none; }
.kc-footnav a:hover { color: #FFFFFF; text-decoration: underline; }
@media (max-width: 760px) {
  .kc-footcols { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .kc-footbrand { grid-column: 1 / -1; }
}

/* =====================================================================
   PHONE LAYOUT (≤760px). Everything below only applies at phone widths;
   desktop rules above are untouched. Carousels are native scroll-snap.
   ===================================================================== */
@media (max-width: 760px) {
  /* Header: one-line announcement, shorter nav */
  .kc-announce__row { flex-wrap: nowrap; justify-content: flex-start; gap: 10px; min-height: 40px; padding: 4px 16px; }
  .kc-cities { position: relative; flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; white-space: nowrap; gap: 10px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .kc-cities::-webkit-scrollbar { display: none; }
  .kc-nav__row { min-height: 72px; padding: 0 16px; }
  .kc-nav__logo img { height: 50px; }

  /* Hero: buttons side by side */
  .kc-hero__ctas { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .kc-hero-cta { width: auto; min-width: 0; padding: 0 12px; font-size: 14px; }

  /* Build your boil: tabs (injected by home.js) show one step at a time */
  .kc-byb-tabs { display: flex; gap: 6px; margin: 22px 0 0; padding: 4px; background: var(--sand-2, #efe3cc); border-radius: 999px; }
  .kc-byb-tab {
    flex: 1 1 0; min-height: 44px; border: 0; border-radius: 999px; background: transparent; cursor: pointer;
    font: inherit; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--brown);
  }
  .kc-byb-tab[aria-selected="true"] { background: var(--teal); color: var(--cream); }
  .kc-byb-tab:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
  .kc-byb--tabbed .kc-byb-grid { margin-top: 18px; }
  .kc-byb--tabbed .kc-step[hidden] { display: none; }

  /* Locator: search, then results, then the map */
  .kc-locate { display: flex; flex-direction: column; }
  .kc-locate__grid { display: contents; }
  .kc-locate__grid > div:first-child { order: 1; }
  .kc-select { max-width: none; height: 48px; }
  .kc-results-wrap { order: 2; margin-top: 8px; }
  .kc-locate__grid > div:last-child { order: 3; margin-top: 28px; }
  .kc-map-frame { padding: 10px; }
  .kc-map-frame iframe { height: 340px; }

  /* Newest restaurants: swipe carousel with a peek of the next card */
  /* position: relative on the scroll tracks so .vh helpers (position: absolute) inside
     off-screen cards are clipped by the track instead of widening the page. */
  .kc-now-grid {
    position: relative; display: flex; grid-template-columns: none; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 4px 4px 18px; margin-left: -4px; margin-right: -4px; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .kc-now-grid::-webkit-scrollbar { display: none; }
  .kc-now-card { flex: 0 0 80%; scroll-snap-align: start; }
  .kc-now-card__img { height: 170px; }

  /* Experience wall: swipe strip */
  .kc-nation__grid {
    position: relative; display: flex; grid-template-columns: none; gap: 18px; margin-top: 34px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 10px 6px 22px; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .kc-nation__grid::-webkit-scrollbar { display: none; }
  .kc-polaroid { flex: 0 0 82%; scroll-snap-align: center; }
  .kc-polaroid > div:first-child { height: 240px; }

  /* Swipe hint under carousels (injected by home.js) */
  .kc-swipe-hint { margin: 2px 0 0; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brown-3); text-align: center; }
}

/* Skip layout and paint for far-below-the-fold sections until they approach the viewport (cheaper scrolling). */
.kc-now, .kc-nation { content-visibility: auto; contain-intrinsic-size: auto 900px; }

/* Tablet (761-900px): keep the three steps side by side with one option per line, so the section stays centered under its heading instead of stacking left. */
@media (min-width: 761px) and (max-width: 900px) {
  .kc-byb-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .kc-byb-div { display: none; }
  .kc-step__list, .kc-step__list--two, .kc-step__list--catch { grid-template-columns: minmax(0, 1fr); grid-template-rows: none; grid-auto-flow: row; }
  .kc-step__list--catch li span:last-child { white-space: normal; }
}
