:root {
  --ink: #11130f;
  --muted: #5d6659;
  --soft: #f5f3ec;
  --paper: #ffffff;
  --line: #ded9cd;
  --green: #1f4b39;
  --green-dark: #123126;
  --gold: #c48a31;
  --rust: #a94721;
  --shadow: 0 18px 50px rgba(17, 19, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  overflow-x: hidden;
}

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

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

button,
select,
input {
  font: inherit;
}

.site-header,
.store-header {
  width: min(100% - 40px, 1180px);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(17, 19, 15, 0.12);
  backdrop-filter: blur(16px);
}

.site-header.compact,
.store-header {
  position: sticky;
  top: 12px;
  transform: none;
  left: auto;
  margin: 12px auto 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand strong {
  font-size: 18px;
  font-weight: 850;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links,
.store-nav,
.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.store-nav a,
.language-switcher button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.nav-links a:hover,
.store-nav a:hover,
.language-switcher button.active {
  background: #edf0e9;
  color: var(--green);
}

.home-hero {
  min-height: 760px;
  display: grid;
  align-items: end;
  position: relative;
  padding: 150px 20px 42px;
  overflow: hidden;
  color: #fff;
}

.hero-bg,
.store-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(11, 20, 13, 0.74), rgba(11, 20, 13, 0.28)),
    url("https://images.unsplash.com/photo-1498654896293-37aacf113fd9?auto=format&fit=crop&w=2400&q=86");
  background-position: center;
  background-size: cover;
}

.hero-bg::after,
.store-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
}

.hero-content {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding-bottom: 136px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(46px, 8vw, 92px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  white-space: normal;
}

.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.primary {
  background: var(--gold);
  color: #161209;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.button.dark {
  background: var(--green);
  color: #fff;
}

.search-panel {
  width: min(100% - 40px, 1180px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.search-panel label {
  display: grid;
  gap: 6px;
  color: var(--ink);
}

.search-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-panel select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
}

.section,
.plain-main {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.section h2,
.plain-main h1,
.store-section h2,
.store-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.05;
}

.section p,
.plain-main p,
.store-section p {
  color: var(--muted);
}

.section-heading {
  margin-bottom: 28px;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.restaurant-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.restaurant-card a,
.restaurant-card > div {
  display: block;
  height: 100%;
}

.restaurant-card img {
  height: 238px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-meta span,
.tag-row span {
  border-radius: 999px;
  background: #eef0ea;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 9px;
}

.restaurant-card h3 {
  margin: 16px 0 8px;
  font-size: 24px;
  line-height: 1.15;
}

.restaurant-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.empty-state {
  margin: 20px 0 0;
  color: var(--muted);
}

.url-panel {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.url-panel code {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff;
  color: var(--green-dark);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.city-grid,
.owner-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.city-card,
.owner-list span {
  min-height: 136px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.city-card span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.city-card strong {
  display: block;
  margin-top: 12px;
  font-size: 19px;
  line-height: 1.35;
}

.owner-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.owner-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.owner-list span {
  min-height: 78px;
  display: flex;
  align-items: center;
  color: var(--green);
  font-weight: 850;
}

.site-footer {
  width: min(100% - 40px, 1180px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 34px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.plain-main {
  padding: 96px 0;
}

.directory-hero {
  max-width: 780px;
  margin-bottom: 36px;
}

.directory-grid {
  max-width: 390px;
}

.store-page {
  background: #fbfaf6;
}

.store-header {
  width: min(100% - 28px, 1220px);
  height: 72px;
}

.store-hero {
  min-height: 700px;
  display: grid;
  align-items: end;
  position: relative;
  margin-top: -84px;
  padding: 150px 20px 78px;
  overflow: hidden;
  color: #fff;
}

.store-hero-bg {
  background-image: linear-gradient(90deg, rgba(8, 14, 10, 0.58), rgba(8, 14, 10, 0.12)),
    url("/assets/clients/unlimited-konkuk/web/hero-chandelier.jpg");
  background-position: center 40%;
}

.store-hero-content {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.store-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(52px, 8vw, 98px);
  font-weight: 920;
  line-height: 0.96;
}

.store-subtitle {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.quick-strip,
.store-section,
.store-cta {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  transform: translateY(-34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-strip div {
  min-height: 104px;
  padding: 20px;
  background: #fff;
}

.quick-strip span,
.visit-card span,
.menu-grid span,
.proof-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.store-section {
  padding: 72px 0;
}

.story-layout,
.nearby-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 52px;
  align-items: start;
}

.muted-note {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: #fff8e9;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.visit-card {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.visit-card strong {
  display: block;
  margin-top: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.visit-card p {
  margin: 14px 0 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-grid img {
  height: 260px;
  object-fit: cover;
}

.menu-grid article div {
  padding: 20px;
}

.menu-grid h3 {
  margin: 8px 0;
  font-size: 24px;
  line-height: 1.2;
}

.proof-section {
  padding-top: 36px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.proof-card h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.proof-card strong {
  display: block;
  margin-top: 10px;
  color: var(--green-dark);
  font-size: 25px;
  line-height: 1.18;
}

.proof-card p {
  margin: 12px 0 0;
}

.rating-proof {
  background: #fff8e9;
}

.nearby-section ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nearby-section li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  color: var(--muted);
}

.faq-section {
  max-width: 840px;
}

.faq-section details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.faq-section details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 850;
}

.faq-section details p {
  margin: 12px 0 0;
}

.store-cta {
  margin-bottom: 72px;
  padding: 46px;
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
}

.store-cta h2 {
  color: #fff;
}

.business-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 34px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
}

.business-info div {
  min-width: 0;
}

.business-info dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.business-info dd {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.business-info a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 920px) {
  .site-header,
  .store-header {
    height: auto;
    flex-wrap: wrap;
    padding: 14px;
  }

  .nav-links,
  .store-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .home-hero {
    min-height: 820px;
    padding-top: 170px;
  }

  .hero-content {
    padding-bottom: 210px;
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .owner-section,
  .story-layout,
  .nearby-section {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .restaurant-grid,
  .city-grid,
  .quick-strip,
  .visit-grid,
  .menu-grid,
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .store-hero {
    margin-top: -118px;
    padding-top: 220px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-header,
  .store-header,
  .section,
  .plain-main,
  .quick-strip,
  .store-section,
  .store-cta,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header,
  .store-header {
    height: auto;
    align-items: center;
    flex-wrap: wrap;
    top: 8px;
    gap: 8px;
    padding: 10px;
  }

  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 146px);
    gap: 9px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .language-switcher {
    flex: 0 0 auto;
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
    gap: 4px;
    overflow-x: auto;
  }

  .language-switcher button {
    min-height: 32px;
    padding: 0 9px;
    font-size: 12px;
  }

  .store-nav {
    order: 3;
    flex: 0 0 100%;
    max-width: 100%;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .store-nav::-webkit-scrollbar,
  .language-switcher::-webkit-scrollbar {
    display: none;
  }

  .store-nav a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }

  .home-hero {
    min-height: 820px;
    padding: 150px 14px 32px;
  }

  .hero-content {
    padding-bottom: 360px;
  }

  .hero-content h1 {
    font-size: 43px;
  }

  .hero-copy,
  .store-subtitle {
    font-size: 17px;
  }

  .search-panel {
    width: calc(100% - 28px);
    bottom: 28px;
  }

  .section {
    padding: 58px 0;
  }

  .section h2,
  .plain-main h1,
  .store-section h2,
  .store-cta h2 {
    font-size: 31px;
  }

  .restaurant-grid,
  .city-grid,
  .owner-list,
  .quick-strip,
  .visit-grid,
  .menu-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .store-hero {
    min-height: 620px;
    margin-top: -112px;
    padding: 176px 14px 50px;
  }

  .store-hero h1 {
    font-size: 42px;
  }

  .store-hero .hero-actions,
  .store-cta .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .store-hero .button,
  .store-cta .button {
    width: 100%;
    min-height: 50px;
  }

  .quick-strip {
    transform: translateY(-20px);
  }

  .quick-strip div {
    min-height: 92px;
    padding: 17px;
  }

  .quick-strip strong {
    font-size: 17px;
  }

  .store-section {
    padding: 54px 0;
  }

  .menu-grid img {
    height: 220px;
  }

  .store-cta {
    padding: 28px;
  }

  .business-info {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
    padding-top: 18px;
  }

  .business-info dd {
    font-size: 13px;
  }
}
