:root {
  color-scheme: light;
  --background: #f5f5f7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.1);
  --accent: #e5532d;
  --accent-soft: #fff0eb;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.09);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Pretendard, "Noto Sans KR", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--background); color: var(--ink); }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, select { font: inherit; }

.site-header,
.site-footer,
main { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 12px;
  min-height: 62px;
  margin-top: 12px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(250, 250, 252, 0.76);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 10px; background: var(--ink); color: white; font-weight: 800; }
.brand-name { font-size: 1rem; font-weight: 750; letter-spacing: -.025em; }
.site-header > p { margin: 0; color: var(--muted); font-size: .78rem; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  min-height: 720px;
  padding: 88px 0 108px;
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0; color: var(--accent); font-size: .68rem; font-weight: 800; letter-spacing: .16em; }
.eyebrow > span { width: 24px; height: 1px; background: currentColor; }
.hero h1,
.daily-heading h1 { margin: 22px 0 28px; font-size: clamp(3.8rem, 7.7vw, 7.3rem); font-weight: 750; line-height: .94; letter-spacing: -.075em; word-break: keep-all; }
.hero h1 em { color: var(--accent); font-style: normal; font-weight: inherit; }
.hero-copy { max-width: 540px; color: var(--muted); font-size: 1.08rem; line-height: 1.8; word-break: keep-all; }
.hero-link { display: inline-flex; gap: 30px; align-items: center; margin-top: 24px; padding: 11px 0; color: var(--accent); font-size: .88rem; font-weight: 750; text-decoration: none; }
.hero-link span { transition: transform .2s ease; }
.hero-link:hover span { transform: translateY(3px); }
.nearby { max-width: 560px; margin-top: 34px; padding: 17px 18px; border: 1px solid rgba(255, 255, 255, .82); border-radius: 18px; background: var(--surface); box-shadow: 0 10px 34px rgba(0, 0, 0, .04); backdrop-filter: blur(18px); }
.nearby strong { font-size: .85rem; }
.nearby p { margin: 5px 0 13px; color: var(--muted); font-size: .73rem; line-height: 1.55; }
.nearby nav { display: flex; flex-wrap: wrap; gap: 8px; }
.nearby a { display: inline-flex; align-items: center; gap: 7px; min-height: 38px; padding: 8px 12px; border-radius: 99px; background: var(--ink); color: white; font-size: .7rem; font-weight: 750; text-decoration: none; }
.nearby a:hover, .nearby a:focus-visible { background: var(--accent); outline: 0; }

.hero-feature {
  position: relative;
  display: grid;
  min-height: 530px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 42px;
  background: linear-gradient(145deg, #fff, #ececef);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.hero-feature::after { content: ""; position: absolute; inset: auto 0 0; height: 44%; background: linear-gradient(transparent, rgba(0, 0, 0, .64)); pointer-events: none; }
.hero-feature img { width: 100%; height: 530px; padding: 18px; object-fit: contain; object-position: center; transition: transform .45s ease; }
.hero-feature:hover img { transform: scale(1.018); }
.feature-badge { position: absolute; z-index: 1; top: 24px; right: 24px; padding: 8px 12px; border-radius: 99px; background: rgba(255, 255, 255, .82); color: var(--ink); font-size: .64rem; font-weight: 800; letter-spacing: .11em; backdrop-filter: blur(16px); }
.feature-caption { position: absolute; z-index: 1; right: 30px; bottom: 30px; left: 30px; color: white; }
.feature-caption small { display: block; margin-bottom: 7px; color: rgba(255, 255, 255, .72); font-weight: 650; }
.feature-caption strong { font-size: 1.55rem; line-height: 1.28; }
.hero-feature-empty { color: var(--muted); text-align: center; }

.log-list { padding: 96px 0 140px; border-top: 1px solid var(--line); }
.section-heading { display: flex; align-items: end; justify-content: space-between; }
.section-heading h2 { margin: 12px 0 0; font-size: clamp(2.15rem, 4.2vw, 3.7rem); line-height: 1.05; letter-spacing: -.055em; }
.section-heading > span { color: var(--muted); font-size: .82rem; }

.region-filter {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin: 40px 0 30px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .045);
  backdrop-filter: blur(20px);
}
.region-filter label { display: grid; gap: 7px; color: var(--muted); font-size: .7rem; font-weight: 750; }
.region-filter select { width: 100%; min-height: 48px; padding: 0 42px 0 14px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255, 255, 255, .9); color: var(--ink); cursor: pointer; font-weight: 650; }
.region-filter select:disabled { cursor: not-allowed; opacity: .5; }
.region-filter select:focus-visible,
.filter-reset:focus-visible { outline: 3px solid rgba(229, 83, 45, .22); outline-offset: 2px; }
.filter-reset { min-height: 48px; padding: 0 18px; border: 0; border-radius: 12px; background: var(--ink); color: white; cursor: pointer; font-size: .77rem; font-weight: 750; }
.filter-status { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .76rem; }

.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.day-card { min-width: 0; }
.day-card[hidden] { display: none; }
.day-card > a { position: relative; display: grid; grid-template-columns: minmax(150px, 42%) 1fr; gap: 22px; min-height: 260px; padding: 16px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .9); border-radius: 28px; background: var(--surface); box-shadow: 0 12px 40px rgba(0, 0, 0, .04); text-decoration: none; transition: transform .24s ease, box-shadow .24s ease; backdrop-filter: blur(14px); }
.day-card > a:hover,
.day-card > a:focus-visible { transform: translateY(-4px); box-shadow: 0 24px 64px rgba(0, 0, 0, .1); outline: 0; }
.card-photo { position: relative; display: grid; min-height: 228px; overflow: hidden; place-items: center; border-radius: 18px; background: linear-gradient(145deg, #fff, #e9e9ed); }
.card-photo img { width: 100%; height: 100%; padding: 8px; object-fit: contain; object-position: center; }
.card-photo > span:not(.card-number) { display: grid; height: 100%; place-items: center; color: var(--muted); font-size: 3rem; font-weight: 750; }
.card-number { position: absolute; right: 10px; bottom: 10px; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: rgba(29, 29, 31, .82); color: white; font-size: .66rem; font-weight: 800; backdrop-filter: blur(12px); }
.card-content { align-self: center; min-width: 0; }
.card-location { margin: 0 0 7px; color: var(--accent); font-size: .72rem; font-weight: 750; }
.card-content time { color: var(--muted); font-size: .68rem; letter-spacing: .06em; }
.card-content h3 { margin: 8px 28px 10px 0; font-size: clamp(1.35rem, 2.3vw, 1.95rem); line-height: 1.18; letter-spacing: -.04em; }
.card-meta { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.55; }
.card-arrow { position: absolute; top: 20px; right: 20px; color: var(--accent); font-size: 1.1rem; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0 0; color: var(--ink); font-size: .69rem; font-weight: 700; }
.tags span { padding: 5px 8px; border-radius: 99px; background: var(--accent-soft); }
.filter-empty,
.empty-state { padding: 74px 0; text-align: center; color: var(--muted); }
.empty-state p { margin: 0 0 8px; color: var(--ink); font-size: 1.45rem; font-weight: 700; }

.daily { max-width: 1000px; margin-inline: auto; }
.daily-heading { padding: 78px 0 104px; }
.back-link { display: inline-flex; margin-bottom: 76px; color: var(--muted); font-size: .82rem; font-weight: 650; text-decoration: none; }
.daily-heading > time { display: block; color: var(--accent); font-size: .75rem; font-weight: 800; letter-spacing: .11em; }
.daily-heading h1 { max-width: 900px; font-size: clamp(3.2rem, 7vw, 6.4rem); }
.location { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.location span { color: var(--accent); font-size: .45rem; }
.summary { display: flex; margin: 46px 0 0; }
.summary div { min-width: 145px; padding: 0 30px; border-left: 1px solid var(--line); }
.summary div:first-child { padding-left: 0; border: 0; }
.summary dt { color: var(--muted); font-size: .7rem; }
.summary dd { margin: 7px 0 0; font-size: 1.55rem; font-weight: 700; }
.places { border-top: 1px solid var(--line); }
.place { display: grid; grid-template-columns: 62px 1fr; gap: 22px; padding: 74px 0 96px; border-bottom: 1px solid var(--line); }
.place-index { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-size: .66rem; font-weight: 800; }
.place-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; }
.franchise-label { display: inline-flex; margin: 10px 0 0; padding: 5px 9px; border-radius: 99px; background: var(--accent-soft); color: var(--accent); font-size: .64rem; font-weight: 850; letter-spacing: .08em; }
.place-heading h2 { margin: 8px 0 0; font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1.06; letter-spacing: -.055em; }
.rating { margin: 0; white-space: nowrap; color: var(--accent); font-size: 1.2rem; font-weight: 700; }
.rating span { color: var(--muted); font-size: .73rem; }
.map-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 17px; }
.map-links a { display: inline-flex; align-items: center; gap: 7px; min-height: 40px; padding: 8px 13px; border: 1px solid var(--line); border-radius: 99px; background: rgba(255, 255, 255, .8); font-size: .72rem; font-weight: 750; text-decoration: none; }
.map-links a:hover,
.map-links a:focus-visible { border-color: var(--accent); color: var(--accent); outline: 0; }
.place-photo { display: grid; min-height: 320px; margin: 38px 0 24px; overflow: hidden; place-items: center; border: 1px solid rgba(255, 255, 255, .9); border-radius: 30px; background: linear-gradient(145deg, #fff, #e9e9ed); box-shadow: var(--shadow); }
.place-photo img { width: 100%; height: min(68vw, 660px); padding: 16px; object-fit: contain; object-position: center; }
.menus { display: flex; flex-wrap: wrap; gap: 8px; }
.menus span { padding: 7px 12px; border-radius: 99px; background: var(--ink); color: white; font-size: .74rem; }
.menu-evaluations { margin-top: 26px; }
.menu-section-title { margin: 0 0 10px; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.menu-evaluations > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.menu-evaluations article { padding: 16px 18px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255, 255, 255, .72); }
.menu-evaluations article p { display: flex; align-items: center; gap: 8px; margin: 0 0 6px; }
.menu-evaluations article > span { color: var(--muted); font-size: .75rem; }
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
.reviews blockquote { margin: 0; padding: 26px; border: 1px solid rgba(255, 255, 255, .9); border-radius: 20px; background: var(--surface); box-shadow: 0 10px 32px rgba(0, 0, 0, .035); }
.reviews blockquote p { margin: 0; font-size: 1.04rem; font-weight: 600; line-height: 1.72; }
.reviews footer { margin-top: 18px; color: var(--accent); font-size: .73rem; font-weight: 800; }

.site-footer { display: flex; justify-content: space-between; align-items: end; min-height: 180px; padding: 46px 0; border-top: 1px solid var(--line); }
.site-footer strong { font-size: 1.35rem; }
.site-footer p { margin: 9px 0 0; color: var(--muted); font-size: .76rem; }
.site-footer a { color: var(--accent); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-decoration: none; }

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-feature, .hero-feature img { min-height: 0; height: 470px; }
  .card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header, .site-footer, main { width: min(100% - 28px, 1180px); }
  .site-header { top: 8px; min-height: 58px; margin-top: 8px; padding-inline: 14px; border-radius: 15px; }
  .site-header > p { display: none; }
  .hero { gap: 42px; padding: 68px 0 82px; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 4.7rem); }
  .hero-feature, .hero-feature img { height: 400px; }
  .hero-feature { border-radius: 30px; }
  .log-list { padding: 68px 0 104px; }
  .section-heading { align-items: start; }
  .section-heading > span { margin-top: 6px; }
  .region-filter { grid-template-columns: 1fr; margin-top: 28px; padding: 14px; }
  .filter-reset { width: 100%; }
  .day-card > a { grid-template-columns: 116px 1fr; gap: 15px; min-height: 190px; padding: 11px; border-radius: 22px; }
  .card-photo { min-height: 166px; border-radius: 15px; }
  .card-content h3 { font-size: 1.35rem; }
  .card-meta { display: none; }
  .daily-heading { padding: 58px 0 70px; }
  .back-link { margin-bottom: 54px; }
  .summary div { min-width: 0; flex: 1; padding-inline: 14px; }
  .summary dd { font-size: 1.15rem; }
  .place { grid-template-columns: 34px 1fr; gap: 7px; padding: 52px 0 72px; }
  .place-index { width: 29px; height: 29px; }
  .place-heading { display: block; }
  .rating { margin-top: 18px; }
  .place-photo { min-height: 220px; margin-top: 30px; border-radius: 22px; }
  .place-photo img { height: 92vw; max-height: 480px; padding: 10px; }
  .reviews { grid-template-columns: 1fr; }
  .menu-evaluations > div { grid-template-columns: 1fr; }
  .site-footer { min-height: 150px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
