@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700;800;900&family=Song+Myung&display=swap");

:root {
  --ink: #171411;
  --muted: #70685f;
  --paper: #f5f0e7;
  --surface: #e9dfd0;
  --line: #d2c3b1;
  --green: #17392f;
  --green-2: #2e6254;
  --wine: #762934;
  --gold: #bd8840;
  --blue: #345f82;
  --night: #1e1c19;
  --night-2: #11100e;
  --night-line: rgba(245, 240, 231, 0.16);
  --chalk: #f7f0e6;
  --star: #f4c35b;
  --shadow: 0 16px 42px rgba(23, 20, 17, 0.12);
  --font-body: "Noto Sans KR", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-brand: "Song Myung", "Noto Serif KR", "Nanum Myeongjo", serif;
  --font-display: "Song Myung", "Noto Serif KR", "Nanum Myeongjo", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
}

body[data-lang="ja"],
body[data-lang="zh"] {
  word-break: normal;
}

body[data-lang="ja"] h1,
body[data-lang="ja"] h2,
body[data-lang="ja"] h3,
body[data-lang="zh"] h1,
body[data-lang="zh"] h2,
body[data-lang="zh"] h3 {
  overflow-wrap: anywhere;
}

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

button {
  font: inherit;
}

.site-header {
  width: min(100% - 32px, 1240px);
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 2px;
  background: rgba(245, 240, 231, 0.9);
  box-shadow: 0 12px 30px rgba(21, 17, 14, 0.08);
  backdrop-filter: blur(14px);
}

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

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 2px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-brand);
  font-size: 20px;
  font-weight: 400;
}

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

.brand strong {
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

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

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

.nav-links a,
.language-switcher button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 2px;
  padding: 0 12px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  white-space: nowrap;
}

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

.hero {
  min-height: 740px;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 150px 20px 92px;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(17, 16, 14, 0.9), rgba(31, 26, 20, 0.42)),
    url("https://images.unsplash.com/photo-1498654896293-37aacf113fd9?auto=format&fit=crop&w=2400&q=86");
  background-position: center 56%;
  background-size: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(12, 10, 8, 0.04), rgba(12, 10, 8, 0.72));
}

.gangnam-hero .hero-bg {
  background-image: linear-gradient(90deg, rgba(23, 16, 11, 0.84), rgba(35, 23, 17, 0.3)),
    url("https://images.unsplash.com/photo-1544148103-0773bf10d330?auto=format&fit=crop&w=2400&q=86");
}

.magok-hero .hero-bg {
  background-image: linear-gradient(90deg, rgba(23, 16, 11, 0.82), rgba(35, 23, 17, 0.28)),
    url("https://images.unsplash.com/photo-1551218808-94e220e084d2?auto=format&fit=crop&w=2400&q=86");
}

.hero-inner {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.hero-brand .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 64px;
  align-items: end;
}

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

.hero h1 {
  max-width: 940px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 108px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.hero-copy {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.65;
}

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

.hero-note {
  max-width: 360px;
  border-top: 1px solid rgba(247, 240, 230, 0.32);
  padding-top: 18px;
  color: rgba(247, 240, 230, 0.82);
}

.hero-note span {
  display: block;
  color: var(--star);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-note p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.7;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 850;
}

.button.primary {
  background: var(--chalk);
  color: var(--night);
}

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

.quick-strip {
  width: min(100% - 32px, 1240px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 auto;
  position: relative;
  z-index: 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--night);
  box-shadow: none;
}

.quick-strip div {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid var(--night-line);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip span {
  display: block;
  color: rgba(247, 240, 230, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.quick-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.4;
  color: var(--chalk);
}

.section {
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
  padding: 108px 0;
}

.section.no-top {
  padding-top: 26px;
}

.intro-grid,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 56px;
  align-items: start;
}

.section h2,
.article-hero h1,
.readiness-heading h2,
.about-faq h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.body-copy p,
.split-section p,
.article-hero p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 18px;
}

.body-copy p:last-child,
.split-section p:last-child {
  margin-bottom: 0;
}

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

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

.menu-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.branch-card,
.column-card,
.menu-card,
.post-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fbf7ef;
  box-shadow: none;
}

.branch-card {
  overflow: hidden;
}

.branch-card a,
.column-card {
  display: block;
}

.branch-image {
  min-height: 240px;
  background-image: linear-gradient(180deg, rgba(24, 61, 50, 0.08), rgba(24, 61, 50, 0.2)),
    url("https://images.unsplash.com/photo-1544148103-0773bf10d330?auto=format&fit=crop&w=1200&q=82");
  background-position: center;
  background-size: cover;
}

.branch-card.magok .branch-image {
  background-image: linear-gradient(180deg, rgba(24, 61, 50, 0.08), rgba(24, 61, 50, 0.2)),
    url("https://images.unsplash.com/photo-1551218808-94e220e084d2?auto=format&fit=crop&w=1200&q=82");
}

.branch-body,
.column-card,
.menu-card,
.post-card {
  padding: 24px;
}

.area-pill,
.column-card span,
.menu-card span,
.post-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
}

.branch-body h3,
.menu-card h3,
.post-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.branch-body p,
.column-card p,
.menu-card p,
.post-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.column-post-card {
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.column-post-card img {
  width: calc(100% + 48px);
  max-width: none;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: -24px -24px 6px;
  border-bottom: 1px solid var(--line);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 2px;
  padding: 0 10px;
  background: #efe2cf;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.readiness-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 112px max(32px, calc((100vw - 1240px) / 2 + 32px));
  background: var(--night);
  color: var(--chalk);
}

.readiness-heading {
  max-width: 880px;
  margin-bottom: 42px;
}

.readiness-heading h2 {
  color: var(--chalk);
}

.readiness-heading p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(247, 240, 230, 0.68);
  font-size: 18px;
}

.readiness-table {
  border-top: 1px solid var(--night-line);
}

.readiness-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 28px;
  align-items: center;
  min-height: 84px;
  border-bottom: 1px solid var(--night-line);
}

.readiness-row span {
  color: rgba(247, 240, 230, 0.94);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 850;
  line-height: 1.35;
}

.readiness-row strong {
  color: var(--star);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 2px 16px rgba(244, 195, 91, 0.2);
}

.readiness-header {
  min-height: 54px;
}

.readiness-header span {
  color: rgba(247, 240, 230, 0.72);
  font-size: 16px;
  font-weight: 850;
}

.info-list {
  display: grid;
  gap: 10px;
}

.info-list a,
.info-list span {
  display: block;
  border-left: 4px solid var(--green-2);
  padding: 14px 16px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 750;
}

.column-card.large {
  min-height: 230px;
}

.column-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.25;
}

.faq-section {
  padding-top: 32px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.article-shell {
  width: min(100% - 32px, 980px);
  margin: 0 auto;
  padding: 86px 0 60px;
}

.article-hero {
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--line);
}

.article-hero p {
  max-width: 720px;
  margin-top: 18px;
}

.article-back {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.article-meta span + span::before {
  content: "·";
  margin-right: 10px;
  color: var(--line);
}

.article-cover {
  margin: 34px 0 0;
}

.article-cover img,
.article-inline-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  object-fit: cover;
}

.article-body {
  padding: 40px 0 88px;
  color: var(--ink);
}

.article-body h2,
.article-body h3 {
  margin: 42px 0 14px;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.18;
}

.article-body h2 {
  font-size: clamp(30px, 3.8vw, 46px);
}

.article-body h3 {
  font-size: clamp(24px, 2.8vw, 34px);
}

.article-body p,
.article-body li,
.article-body dd {
  color: var(--muted);
  font-size: 18px;
}

.article-body a {
  color: var(--green);
  font-weight: 850;
}

.article-body blockquote,
.notion-callout,
.article-visit-box,
.related-posts {
  margin: 28px 0;
  border: 1px solid var(--line);
  background: #fbf7ef;
  padding: 22px;
}

.article-body blockquote {
  border-left: 4px solid var(--green);
}

.notion-list {
  padding-left: 24px;
}

.article-inline-image {
  margin: 30px 0;
}

.article-inline-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.article-body details {
  margin: 12px 0;
  border: 1px solid var(--line);
  background: #fbf7ef;
  padding: 16px 18px;
}

.article-body summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.article-visit-box dl {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.article-visit-box div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 12px;
}

.article-visit-box dt {
  color: var(--wine);
  font-weight: 900;
}

.related-posts {
  display: grid;
  gap: 10px;
}

.related-posts a {
  display: block;
}

.post-list {
  display: grid;
  gap: 14px;
  padding: 34px 0 80px;
}

.site-footer {
  width: min(100% - 32px, 1160px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    position: sticky;
    top: 8px;
    transform: none;
    left: auto;
    margin: 8px auto 0;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .site-header.compact .nav-links {
    flex-wrap: wrap;
    gap: 8px 14px;
    overflow: visible;
  }

  .hero {
    min-height: 620px;
    padding-top: 94px;
  }

  .hero-brand .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-note {
    max-width: 560px;
  }

  .quick-strip,
  .intro-grid,
  .split-section,
  .branch-grid,
  .column-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-top: -24px;
  }

  .quick-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .readiness-section {
    padding: 78px 24px;
  }

  .readiness-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
  }

  .intro-grid,
  .split-section {
    gap: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .site-header,
  .section,
  .quick-strip,
  .site-footer,
  .article-shell {
    width: min(100% - 24px, 1240px);
  }

  .language-switcher button,
  .nav-links a {
    padding: 0 10px;
    font-size: 13px;
  }

  .hero {
    min-height: 560px;
    padding: 80px 12px 64px;
  }

  .hero-note p {
    font-size: 15px;
  }

  .hero h1 {
    font-size: clamp(44px, 17vw, 72px);
  }

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

  .branch-body,
  .column-card,
  .menu-card,
  .post-card {
    padding: 20px;
  }

  .branch-body h3,
  .column-card strong,
  .menu-card h3,
  .post-card h2 {
    font-size: 23px;
  }

  .readiness-section {
    padding: 64px 18px;
  }

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

  .readiness-heading p {
    font-size: 16px;
  }

  .readiness-row {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding: 18px 0;
  }

  .readiness-header {
    display: none;
  }

  .readiness-row span {
    font-size: 20px;
  }

  .readiness-row strong {
    font-size: 27px;
  }
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.nav-dropdown {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.nav-dropdown > button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 2px;
  padding: 0 12px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  white-space: nowrap;
}

.nav-dropdown > button:hover,
.nav-dropdown:focus-within > button {
  background: var(--surface);
  color: var(--green);
}

.dropdown-menu {
  min-width: 172px;
  display: grid;
  gap: 0;
  position: absolute;
  z-index: 40;
  top: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, 8px);
  padding: 8px 0;
  border: 1px solid rgba(47, 45, 42, 0.14);
  background: rgba(247, 244, 237, 0.98);
  box-shadow: 0 20px 50px rgba(23, 20, 17, 0.16);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.dropdown-menu::before {
  content: "";
  height: 12px;
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
}

.dropdown-menu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 16px;
  color: #5f5a53;
  font-size: 14px;
  font-weight: 650;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: #ece4d8;
  color: #1c5b42;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.about-layout {
  background: #f7f4ed;
  color: #57534e;
}

.about-layout .about-header {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(0, auto) minmax(120px, 1fr);
  align-items: center;
  gap: 32px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  transform: none;
  padding: 24px 8vw;
  border: 0;
  border-bottom: 1px solid rgba(47, 45, 42, 0.12);
  border-radius: 0;
  background: rgba(247, 244, 237, 0.94);
  box-shadow: none;
  color: #2f2d2a;
  backdrop-filter: blur(12px);
}

.about-wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 14px;
  color: #2f2d2a;
  font-family: var(--font-brand);
  font-size: clamp(28px, 2.2vw, 42px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}

.about-nav {
  justify-self: center;
  gap: clamp(18px, 3vw, 42px);
}

.about-nav a,
.about-nav .nav-dropdown > button,
.about-language button {
  min-height: auto;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: #6d675f;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.about-nav a::after,
.about-nav .nav-dropdown > button::after {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  margin-top: 4px;
  background: currentColor;
  transition: width 0.24s ease;
}

.about-nav a:hover,
.about-nav .nav-dropdown > button:hover,
.about-nav .nav-dropdown:focus-within > button {
  color: #1c5b42;
}

.about-nav a:hover::after,
.about-nav .nav-dropdown:hover > button::after,
.about-nav .nav-dropdown:focus-within > button::after {
  width: 100%;
}

.about-language {
  justify-self: end;
  gap: 9px;
}

.about-language button {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 45, 42, 0.16);
  border-radius: 50%;
  font-size: 11px;
  color: #6d675f;
}

.about-language button.active,
.about-language button:hover {
  color: #fff;
  background: #1c5b42;
}

.about-main {
  padding: 152px 8vw 0;
}

.about-intro {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: minmax(280px, 0.94fr) minmax(320px, 0.72fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
  margin: 0 auto;
  padding: 40px 0 88px;
  border-bottom: 1px solid rgba(47, 45, 42, 0.16);
}

.about-photo {
  min-height: min(62vw, 620px);
  background-position: center;
  background-size: cover;
  filter: saturate(0.88) contrast(0.96);
}

.gangnam-about-photo {
  background-image:
    linear-gradient(180deg, rgba(27, 21, 15, 0.06), rgba(27, 21, 15, 0.1)),
    url("/assets/clients/judorak/web/judorak-gangnam-1.webp");
}

.magok-about-photo {
  background-image:
    linear-gradient(180deg, rgba(27, 21, 15, 0.06), rgba(27, 21, 15, 0.1)),
    url("/assets/clients/judorak/web/judorak-magok-1.webp");
}

.about-copy {
  max-width: 460px;
}

.about-copy h1 {
  margin: 0 0 28px;
  color: #2f2d2a;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0.02em;
}

.about-copy p:not(.eyebrow) {
  margin: 0 0 20px;
  color: #736d65;
  font-size: 16px;
  line-height: 1.95;
}

.about-card-section,
.about-visit {
  width: min(100%, 1180px);
  margin: 0 auto;
  scroll-margin-top: 128px;
}

.about-card-section {
  padding: 86px 0;
}

.about-intro,
.branch-about-footer {
  scroll-margin-top: 128px;
}

.about-card-section h2,
.about-visit h2 {
  margin: 0;
  color: #2f2d2a;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.2;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid rgba(47, 45, 42, 0.18);
  border-left: 1px solid rgba(47, 45, 42, 0.18);
}

.about-card-grid article {
  display: flex;
  min-width: 0;
  min-height: 248px;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid rgba(47, 45, 42, 0.18);
  border-bottom: 1px solid rgba(47, 45, 42, 0.18);
}

.about-card-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 0 22px;
  background: #f6f0e7;
  border: 1px solid rgba(47, 45, 42, 0.12);
  object-fit: contain;
}

.about-card-grid span {
  display: block;
  color: #1c5b42;
  font-size: 14px;
  font-weight: 700;
}

.about-card-grid h3 {
  min-height: 56px;
  margin: 12px 0 14px;
  color: #34312d;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.about-card-grid p {
  margin: 0;
  color: #817a72;
  font-size: 15px;
  line-height: 1.82;
}

.about-scene {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 0 88px;
}

.about-scene-photo {
  min-height: clamp(380px, 48vw, 650px);
  background-position: center;
  background-size: cover;
  filter: saturate(0.9) contrast(0.97);
}

.gangnam-scene-photo {
  background-image:
    linear-gradient(180deg, rgba(27, 21, 15, 0.03), rgba(27, 21, 15, 0.08)),
    url("/assets/clients/judorak/web/judorak-gangnam-2.webp");
  background-position: center 42%;
}

.magok-scene-photo {
  background-image:
    linear-gradient(180deg, rgba(27, 21, 15, 0.03), rgba(27, 21, 15, 0.08)),
    url("/assets/clients/judorak/web/judorak-magok-2.webp");
  background-position: center 48%;
}

.about-visit {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(44px, 8vw, 132px);
  align-items: start;
  padding: 88px 0 110px;
  border-top: 1px solid rgba(47, 45, 42, 0.16);
}

.about-visit p:not(.eyebrow) {
  max-width: 500px;
  margin: 24px 0 0;
  color: #736d65;
  font-size: 16px;
  line-height: 1.95;
}

.about-info-list {
  display: grid;
  border-top: 1px solid rgba(47, 45, 42, 0.16);
}

.about-info-list span,
.about-info-list a {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid rgba(47, 45, 42, 0.16);
  color: #675f57;
  font-size: 16px;
  line-height: 1.7;
}

.about-info-list a {
  color: #1c5b42;
  font-weight: 750;
}

.about-map-faq {
  grid-column: 1 / -1;
  display: grid;
  gap: 72px;
  padding-top: 14px;
}

.map-frame {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(47, 45, 42, 0.18);
  background: #ece4d8;
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
  filter: saturate(0.82) contrast(0.96);
}

.about-faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(40px, 7vw, 116px);
  align-items: start;
  padding-top: 72px;
  border-top: 1px solid rgba(47, 45, 42, 0.16);
}

.about-faq h2 {
  grid-column: 1;
}

.about-faq .eyebrow {
  grid-column: 1;
  margin-bottom: 0;
}

.about-faq .faq-list {
  grid-column: 2;
  grid-row: 1 / span 2;
  gap: 12px;
  border-top: 0;
}

.about-faq .faq-list details {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 45, 42, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.24);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.about-faq .faq-list details:hover,
.about-faq .faq-list details[open] {
  border-color: rgba(189, 136, 64, 0.34);
  background: rgba(255, 252, 246, 0.76);
  box-shadow: 0 12px 30px rgba(47, 45, 42, 0.06);
}

.about-faq .faq-list summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 24px;
  color: #34312d;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

.about-faq .faq-list summary::-webkit-details-marker {
  display: none;
}

.about-faq .faq-list summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(47, 45, 42, 0.16);
  border-radius: 50%;
  color: var(--green);
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.about-faq .faq-list details[open] summary::after {
  content: "-";
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.about-faq .faq-list p {
  margin: -2px 24px 24px;
  padding-top: 17px;
  border-top: 1px solid rgba(47, 45, 42, 0.1);
  color: #756e66;
  font-size: 15px;
  line-height: 1.8;
}

.branch-about-footer {
  border-top: 1px solid rgba(47, 45, 42, 0.14);
}

.mingles-layout {
  background: #f7f4ed;
  color: #57534e;
  font-family: var(--font-body);
}

.mingles-layout .mingles-header {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(0, auto) minmax(120px, 1fr);
  align-items: center;
  gap: 32px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  transform: none;
  padding: 26px 8vw;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  backdrop-filter: none;
}

.mingles-wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 14px;
  color: #fff;
  font-family: var(--font-brand);
  font-size: clamp(28px, 2.2vw, 42px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}

.mingles-wordmark span:first-child {
  display: inline-block;
}

.mingles-layout .mingles-nav {
  justify-self: center;
  gap: clamp(18px, 3vw, 48px);
}

.mingles-layout .mingles-nav a,
.mingles-layout .mingles-nav .nav-dropdown > button,
.mingles-layout .mingles-language button {
  min-height: auto;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.mingles-layout .mingles-nav a::after,
.mingles-layout .mingles-nav .nav-dropdown > button::after {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  margin-top: 4px;
  background: currentColor;
  transition: width 0.24s ease;
}

.mingles-layout .mingles-nav a:hover::after,
.mingles-layout .mingles-nav .nav-dropdown:hover > button::after,
.mingles-layout .mingles-nav .nav-dropdown:focus-within > button::after {
  width: 100%;
}

.mingles-layout .mingles-nav .dropdown-menu a,
.about-nav .dropdown-menu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 16px;
  color: #5f5a53;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
}

.mingles-layout .mingles-nav .dropdown-menu a::after,
.about-nav .dropdown-menu a::after {
  display: none;
}

.mingles-layout .mingles-nav .dropdown-menu a:hover,
.about-nav .dropdown-menu a:hover,
.mingles-layout .mingles-nav .dropdown-menu a:focus,
.about-nav .dropdown-menu a:focus {
  background: #ece4d8;
  color: #1c5b42;
}

.mingles-language {
  justify-self: end;
}

.mingles-layout .mingles-language {
  gap: 9px;
}

.mingles-layout .mingles-language button {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 79, 60, 0.72);
  backdrop-filter: blur(8px);
}

.mingles-layout .mingles-language button.active,
.mingles-layout .mingles-language button:hover {
  color: #fff;
  background: rgba(0, 79, 60, 0.95);
}

.mingles-home {
  min-height: 100svh;
  background: #0d0c0a;
}

.mingles-landing {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.mingles-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.28)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.02)),
    url("/assets/clients/judorak/web/judorak-main.webp");
  background-position: center 47%;
  background-size: cover;
  filter: saturate(0.9) brightness(0.78);
}

.landing-line {
  position: absolute;
  left: 8vw;
  bottom: 8vh;
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0;
}

.mingles-footer {
  background: #f7f4ed;
  color: #7c7770;
  padding: 82px 12vw 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.72fr 1.38fr;
  gap: clamp(48px, 7vw, 116px);
  align-items: start;
}

.footer-wordmark {
  display: block;
  margin-bottom: 36px;
  color: #2f2d2a;
  font-family: var(--font-brand);
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.footer-brand-block p {
  max-width: 360px;
  margin: 0 0 34px;
  color: #8b857e;
  font-size: 15px;
  line-height: 1.8;
}

.footer-mini-links,
.footer-links-block,
.footer-contact-block {
  display: grid;
  gap: 17px;
}

.footer-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-mini-links a,
.footer-links-block a,
.footer-contact-block a,
.footer-bottom a {
  color: #8b857e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-mini-links a:hover,
.footer-links-block a:hover,
.footer-contact-block a:hover,
.footer-bottom a:hover {
  color: #1c5b42;
}

.footer-links-block h2,
.footer-contact-block h2 {
  margin: 0 0 16px;
  color: #57534e;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.footer-links-block a {
  font-size: 15px;
}

.contact-group {
  display: grid;
  gap: 7px;
  padding-bottom: 6px;
}

.contact-group h3 {
  margin: 0;
  color: #57534e;
  font-size: 15px;
  font-weight: 700;
}

.contact-group p,
.contact-group a {
  margin: 0;
  color: #8b857e;
  font-size: 15px;
  line-height: 1.75;
}

.business-info {
  margin-top: 58px;
  padding-top: 32px;
  border-top: 1px solid rgba(47, 45, 42, 0.14);
  color: #8b857e;
}

.business-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
}

.business-info h2 {
  margin: 0 0 16px;
  color: #57534e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.business-info p {
  margin: 0 0 7px;
  font-size: 13px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  color: #a19b94;
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 32px;
}

@media (max-width: 980px) {
  .mingles-layout .mingles-header {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 20px 24px;
  }

  .mingles-layout .mingles-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    gap: 22px;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 4px;
  }

  .mingles-wordmark {
    font-size: 30px;
  }

  .landing-line {
    right: 24px;
    left: 24px;
    bottom: 58px;
  }

  .mingles-footer {
    padding: 64px 24px 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .business-info-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 58px;
  }

  .footer-bottom div {
    justify-content: flex-start;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .mingles-layout .mingles-header {
    min-height: 118px;
    padding: 18px 18px;
  }

  .mingles-wordmark {
    font-size: 25px;
    letter-spacing: 0.1em;
  }

  .mingles-layout .mingles-nav a {
    font-size: 12px;
    white-space: nowrap;
  }

  .mingles-layout .mingles-nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 12px 20px;
    overflow: visible;
  }

  .mingles-layout .mingles-language button {
    width: 31px;
    height: 31px;
    font-size: 10px;
  }

  .mingles-landing {
    min-height: 86svh;
  }

  .landing-line {
    font-size: 16px;
  }

  .footer-wordmark {
    font-size: 34px;
  }
}

@media (max-width: 980px) {
  .about-layout .about-header {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 20px 24px;
  }

  .about-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .about-wordmark {
    font-size: 30px;
  }

  .about-main {
    padding: 150px 24px 0;
  }

  .about-intro,
  .about-visit {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-copy {
    max-width: 680px;
  }

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

@media (max-width: 560px) {
  .dropdown-menu {
    left: 0;
    transform: translate(0, 8px);
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    transform: translate(0, 0);
  }

  .about-layout .about-header {
    min-height: 112px;
    padding: 16px;
  }

  .about-wordmark {
    font-size: 25px;
    letter-spacing: 0.1em;
  }

  .about-nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 11px 16px;
  }

  .about-nav a,
  .about-nav .nav-dropdown > button {
    font-size: 12px;
  }

  .about-language button {
    width: 31px;
    height: 31px;
    font-size: 10px;
  }

  .about-main {
    padding: 138px 16px 0;
  }

  .about-intro,
  .about-card-section,
  .about-visit,
  .branch-about-footer {
    scroll-margin-top: 138px;
  }

  .about-intro {
    padding: 20px 0 56px;
    gap: 30px;
  }

  .about-photo {
    min-height: 340px;
    aspect-ratio: 4 / 5;
  }

  .about-copy h1 {
    margin-bottom: 22px;
    font-size: 36px;
  }

  .about-copy p:not(.eyebrow),
  .about-visit p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.82;
  }

  .about-card-section {
    padding: 56px 0;
  }

  .about-card-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .about-card-grid article {
    min-height: auto;
    padding: 22px 18px;
    border-right: 1px solid rgba(47, 45, 42, 0.18);
  }

  .about-card-grid img {
    margin-bottom: 18px;
  }

  .about-card-grid h3 {
    min-height: auto;
  }

  .about-visit {
    padding: 58px 0 68px;
    gap: 32px;
  }

  .about-info-list span,
  .about-info-list a {
    padding: 17px 0;
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .about-map-faq {
    gap: 42px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 280px;
    height: 280px;
  }

  .about-faq {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 42px;
  }

  .about-faq .eyebrow,
  .about-faq h2,
  .about-faq .faq-list {
    grid-column: auto;
    grid-row: auto;
  }

  .about-faq .faq-list summary {
    min-height: 64px;
    padding: 0 18px;
    font-size: 16px;
  }

  .about-faq .faq-list p {
    margin: -2px 18px 20px;
    font-size: 14px;
  }
}
