/* Mymy Chicken — loud Korean fried chicken
   Archivo Black + Archivo · red / near-black / bright yellow */

:root {
  --bg: #fffdf6;
  --bg-2: #fff4d6;
  --ink: #14110f;
  --ink-soft: #5c534c;
  --red: #e5121d;
  --red-deep: #b00d16;
  --yellow: #ffd23f;
  --yellow-deep: #f0b800;
  --line: #eadfc6;
  --display: "Archivo Black", "Arial Black", system-ui, sans-serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1180px;
  --pad: clamp(1.2rem, 4vw, 4rem);
  --reveal-delay: 0ms;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(rgba(229, 18, 29, 0.04) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--yellow);
  padding: 0.6rem 1rem; z-index: 100; border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

/* ---------- reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem var(--pad);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--ink);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
}
.wordmark { display: flex; align-items: center; gap: 0.7rem; }
.wordmark__mark {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  color: var(--yellow);
  background: var(--red);
  flex: none;
  box-shadow: 0 6px 0 var(--red-deep);
}
.wordmark__name {
  font-family: var(--display);
  font-size: 1.35rem; letter-spacing: -0.02em;
  display: block; line-height: 1; text-transform: uppercase;
}
.wordmark__name-accent { color: var(--red); }
.wordmark__since {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); display: block; margin-top: 0.34rem; font-weight: 600;
}
.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav a {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); font-weight: 700; transition: color 0.2s ease;
}
.site-nav a:not(.site-nav__cta):not(.site-nav__tel):hover { color: var(--red); }
.site-nav__tel { color: var(--red) !important; }
.site-nav__cta {
  color: var(--ink) !important; background: var(--yellow);
  padding: 0.55rem 1.05rem; border-radius: 999px; letter-spacing: 0.06em;
  box-shadow: 0 4px 0 var(--yellow-deep);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.site-nav__cta:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--yellow-deep); }
@media (max-width: 920px) {
  .site-nav a:not(.site-nav__cta):not(.site-nav__tel) { display: none; }
}
@media (max-width: 560px) {
  .site-nav__tel { display: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-family: var(--sans);
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700;
  padding: 0.95rem 1.7rem; border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn--pop {
  background: var(--red); color: #fff;
  box-shadow: 0 6px 0 var(--red-deep);
}
.btn--pop:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--red-deep); }
.btn--ghost { border: 2px solid var(--ink); color: var(--ink); padding: calc(0.95rem - 2px) calc(1.7rem - 2px); }
.btn--ghost:hover { background: var(--ink); color: var(--yellow); }

/* ---------- hero ---------- */
.hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) var(--pad) clamp(3rem, 7vw, 6rem);
  display: grid; gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1.05fr 0.95fr; align-items: center;
}
@media (max-width: 880px) { .hero { grid-template-columns: 1fr; } }
.hero__eyebrow {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--red); font-weight: 700; margin: 0 0 1rem;
}
.rule { width: 38px; height: 3px; background: var(--yellow); display: inline-block; border-radius: 2px; }
.hero__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(3.2rem, 11vw, 7rem); line-height: 0.9;
  margin: 0; letter-spacing: -0.03em; text-transform: uppercase;
}
.hero__title span { display: block; }
.hero__title--pop { color: var(--red); }
.hero__sub {
  max-width: 36ch; margin: 1.6rem 0 0; font-size: 1.05rem; color: var(--ink-soft);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero__figure { margin: 0; position: relative; }
.hero__figure img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 18px; border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--yellow);
}
.hero__figure figcaption {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  background: var(--ink);
  color: #fff; font-size: 0.72rem; letter-spacing: 0.06em; font-weight: 600;
  text-transform: uppercase; padding: 0.6rem 0.9rem; border-radius: 10px;
}

/* ---------- sections ---------- */
.section {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 6rem) var(--pad);
  border-top: 2px solid var(--line);
}
.section__head { margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section__head--center { text-align: center; }
.section__num {
  font-family: var(--display); font-size: 0.95rem;
  color: var(--red); display: block; margin-bottom: 0.5rem; letter-spacing: 0.05em;
}
.section__kicker {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem); line-height: 0.98; margin: 0;
  max-width: 16ch; text-transform: uppercase; letter-spacing: -0.02em;
}
.section__head--center .section__kicker { margin: 0 auto; }

/* ---------- story ---------- */
.story { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 820px) { .story { grid-template-columns: 1fr; } }
.story__body p { margin: 0 0 1.2rem; font-size: 1.05rem; max-width: 46ch; }
.story__pull {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(1.3rem, 3.2vw, 1.9rem) !important; line-height: 1.1;
  color: var(--ink); background: var(--yellow);
  display: inline-block; padding: 0.5rem 0.85rem; border-radius: 10px;
  margin: 1.6rem 0 !important; letter-spacing: -0.01em;
}
.story__pull em { font-style: normal; }
.story__figure { margin: 0; }
.story__figure img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 18px;
  border: 3px solid var(--ink); box-shadow: -12px 12px 0 var(--red);
}

/* ---------- menu cards ---------- */
.section--menu { background: linear-gradient(180deg, transparent, var(--bg-2) 50%, transparent); }
.menu { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.5vw, 1.6rem); }
@media (max-width: 940px) { .menu { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .menu { grid-template-columns: 1fr; } }
.card { background: #fff; border: 3px solid var(--ink); border-radius: 16px; overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 8px 8px 0 var(--ink); }
.card__figure { margin: 0; overflow: hidden; border-bottom: 3px solid var(--ink); }
.card__figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card__figure img { transform: scale(1.05); }
.card__body { padding: 1.2rem 1.3rem 1.5rem; }
.card__tag {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; color: var(--red); margin: 0 0 0.4rem;
}
.card__body h3 { font-family: var(--display); font-weight: 400; font-size: 1.2rem; line-height: 1.05; margin: 0 0 0.6rem; text-transform: uppercase; letter-spacing: -0.01em; }
.card__body p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; }
.menu__note { text-align: center; margin: clamp(1.8rem, 4vw, 2.8rem) auto 0; max-width: 44ch; color: var(--ink-soft); font-weight: 600; }

/* ---------- visit ---------- */
.visit { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
@media (max-width: 820px) { .visit { grid-template-columns: 1fr; } }
.visit__addr { font-family: var(--display); font-size: 1.4rem; line-height: 1.25; margin: 0 0 1.4rem; text-transform: uppercase; letter-spacing: -0.01em; }
.hours { margin: 0 0 1.6rem; border-top: 2px solid var(--ink); }
.hours__row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.hours__row dt { margin: 0; letter-spacing: 0.02em; font-weight: 700; }
.hours__row dd { margin: 0; color: var(--ink-soft); }
.visit__contact { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.visit__phone { font-family: var(--display); font-size: 1.45rem; color: var(--red); }
.visit__dir { font-size: 0.85rem; letter-spacing: 0.06em; font-weight: 700; color: var(--ink); }
.visit__dir:hover { color: var(--red); }
.visit__note { font-size: 0.88rem; color: var(--ink-soft); }
.visit__map { border-radius: 16px; overflow: hidden; border: 3px solid var(--ink); min-height: 320px; }
.visit__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ---------- coda ---------- */
.coda { text-align: center; padding: clamp(3rem, 8vw, 6rem) var(--pad); }
.coda__mark { font-size: 2rem; color: var(--yellow-deep); margin: 0; }
.coda__line { font-family: var(--display); font-size: clamp(1.6rem, 4.5vw, 2.8rem); margin: 0.5rem 0 0; text-transform: uppercase; letter-spacing: -0.02em; }
.coda__line em { color: var(--red); font-style: normal; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink); color: #fff;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  padding: clamp(2rem, 5vw, 3.5rem) var(--pad);
}
.site-footer__name { font-family: var(--display); font-size: 1.5rem; margin: 0; text-transform: uppercase; color: var(--yellow); }
.site-footer__sub { font-size: 0.85rem; opacity: 0.75; margin: 0.4rem 0 0; }
.site-footer__col--links { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; justify-content: center; }
.site-footer__col--links a { font-size: 0.85rem; letter-spacing: 0.04em; font-weight: 600; opacity: 0.9; }
.site-footer__col--links a:hover { opacity: 1; color: var(--yellow); }
.site-footer__small { grid-column: 1 / -1; font-size: 0.72rem; opacity: 0.55; margin: 1rem 0 0; }
@media (max-width: 600px) {
  .site-footer { grid-template-columns: 1fr; }
  .site-footer__col--links { align-items: flex-start; }
}
