:root {
  --ink: #171513;
  --muted: #6d655e;
  --paper: #fbfaf7;
  --soft: #eee8dd;
  --line: rgba(23, 21, 19, 0.12);
  --moss: #5f735f;
  --clay: #b36b52;
  --gold: #b4935f;
  --charcoal: #262420;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans KR", system-ui, sans-serif;
  line-height: 1.65;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  padding: 22px clamp(20px, 4vw, 58px);
  background: rgba(251, 250, 247, 0.96);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(251, 250, 247, 0.96);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-header.transparent-header:not(.scrolled) {
  background: transparent;
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand span {
  font-size: 1.15rem;
}

.brand small {
  font-size: 0.72rem;
  opacity: 0.78;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  font-size: 0.92rem;
}

.nav a {
  opacity: 0.82;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 700;
}

.header-cta {
  padding: 0 20px;
  border: 1px solid currentColor;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  padding: 128px clamp(20px, 6vw, 88px) 76px;
  background: var(--charcoal);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 21, 19, 0.84), rgba(23, 21, 19, 0.36) 58%, rgba(23, 21, 19, 0.78)),
    radial-gradient(circle at 72% 22%, rgba(180, 147, 95, 0.34), transparent 30%),
    linear-gradient(135deg, #20221d, #493c31 45%, #7b5645);
}

.film-grain {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-frame {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.frame-one {
  right: 8vw;
  top: 18vh;
  width: min(28vw, 360px);
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(rgba(47, 42, 35, 0.08), rgba(47, 42, 35, 0.28)),
    url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=900&q=80");
}

.frame-two {
  right: 30vw;
  bottom: 13vh;
  width: min(18vw, 230px);
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(rgba(47, 42, 35, 0.08), rgba(47, 42, 35, 0.28)),
    url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=700&q=80");
}

.frame-three {
  right: 4vw;
  bottom: 10vh;
  width: min(20vw, 260px);
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(rgba(47, 42, 35, 0.08), rgba(47, 42, 35, 0.28)),
    url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=800&q=80");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(5rem, 16vw, 15rem);
}

.hero-copy {
  margin: 10px 0 34px;
  font-size: clamp(1.35rem, 2.3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 0 24px;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.hero .button.primary {
  background: var(--white);
  color: var(--ink);
}

.button.secondary {
  border: 1px solid currentColor;
  color: inherit;
}

.hero-note {
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  bottom: 32px;
  z-index: 3;
  display: flex;
  gap: 14px;
  font-size: 0.82rem;
  opacity: 0.76;
}

.section {
  padding: clamp(78px, 10vw, 140px) clamp(20px, 6vw, 88px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading.wide {
  max-width: 980px;
}

.section h2 {
  font-size: clamp(2rem, 4.8vw, 4.8rem);
}

.section p {
  color: var(--muted);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.value-grid span {
  color: var(--clay);
  font-weight: 800;
}

.value-grid h3 {
  margin: 62px 0 12px;
  font-size: 1.55rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

.split p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

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

.philosophy-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.philosophy-list strong {
  color: var(--gold);
}

.philosophy-list span {
  color: rgba(255, 255, 255, 0.78);
}

.style-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.style-tabs button {
  min-width: 92px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.style-tabs button.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.style-gallery,
.designer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.style-card,
.designer-grid article,
.review-card,
.reservation-panel {
  border: 1px solid var(--line);
  background: var(--white);
}

.style-card {
  padding: 16px;
}

.style-image {
  min-height: 360px;
  margin-bottom: 22px;
  background:
    linear-gradient(155deg, rgba(23, 21, 19, 0.05), rgba(23, 21, 19, 0.24)),
    var(--soft);
}

.style-card.warm .style-image {
  background:
    linear-gradient(155deg, rgba(23, 21, 19, 0.04), rgba(23, 21, 19, 0.22)),
    linear-gradient(135deg, #d6c3aa, #9c7461);
}

.style-card.green .style-image {
  background:
    linear-gradient(155deg, rgba(23, 21, 19, 0.04), rgba(23, 21, 19, 0.22)),
    linear-gradient(135deg, #bdc8b5, #5f735f);
}

.style-card.coral .style-image {
  background:
    linear-gradient(155deg, rgba(23, 21, 19, 0.04), rgba(23, 21, 19, 0.22)),
    linear-gradient(135deg, #d9b6a8, #b36b52);
}

.style-card h3,
.designer-grid h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.style-card p {
  min-height: 52px;
}

dl {
  margin: 0;
}

.style-card dl div,
.reservation-panel dl div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-weight: 700;
}

dd {
  margin: 0;
}

.designers {
  background: #f1f0eb;
}

.designer-grid article {
  padding: 18px;
}

.portrait {
  min-height: 360px;
  margin-bottom: 22px;
  background-size: cover;
  background-position: center;
}

.p1 {
  background-image: url("https://images.unsplash.com/photo-1605497788044-5a32c7078486?auto=format&fit=crop&w=800&q=80");
}

.p2 {
  background-image: url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=800&q=80");
}

.p3 {
  background-image: url("https://images.unsplash.com/photo-1559599101-f09722fb4948?auto=format&fit=crop&w=800&q=80");
}

.role {
  margin: 0 0 18px;
  color: var(--clay);
  font-weight: 700;
}

blockquote {
  margin: 0;
  color: var(--muted);
}

.designer-grid a {
  display: inline-flex;
  margin-top: 24px;
  font-weight: 800;
  color: var(--moss);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-line li {
  min-height: 180px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-line span {
  display: block;
  margin-bottom: 48px;
  color: var(--clay);
  font-weight: 800;
  font-size: 0.8rem;
}

.process-line strong {
  font-size: 1.22rem;
}

.space {
  background: var(--charcoal);
  color: var(--white);
}

.space .section-heading p {
  color: var(--gold);
}

.space-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: minmax(220px, auto);
  gap: 14px;
}

.space-grid article {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.68)),
    linear-gradient(135deg, #908270, #2f332b);
}

.space-grid .large {
  grid-row: span 2;
}

.space-grid span {
  font-size: 1.35rem;
  font-weight: 800;
}

.space-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.reviews {
  background: #e8ded2;
}

.review-card {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 70px);
}

.review-card blockquote {
  max-width: 860px;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.42;
}

.review-meta,
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.review-meta span,
.tags span {
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.9rem;
}

.journal-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.journal-list a {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  font-weight: 800;
}

.journal-list span {
  color: var(--clay);
  font-size: 0.9rem;
}

.reservation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
  background: var(--moss);
  color: var(--white);
}

.reservation p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 660px;
}

.reservation-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  color: var(--ink);
}

.reservation-panel .button {
  width: 100%;
}

.phone {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid var(--line);
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 6vw, 88px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.footer strong {
  color: var(--white);
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 68svh;
  overflow: hidden;
  padding: 142px clamp(20px, 6vw, 88px) clamp(58px, 8vw, 96px);
  background:
    linear-gradient(90deg, rgba(23, 21, 19, 0.9), rgba(23, 21, 19, 0.46) 58%, rgba(23, 21, 19, 0.86)),
    radial-gradient(circle at 74% 26%, rgba(180, 147, 95, 0.35), transparent 28%),
    linear-gradient(135deg, #20221d, #493c31 45%, #7b5645);
  color: var(--white);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: clamp(22px, 8vw, 120px);
  bottom: clamp(28px, 7vw, 82px);
  width: min(28vw, 360px);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(rgba(47, 42, 35, 0.08), rgba(47, 42, 35, 0.28)),
    url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=900&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.page-hero > * {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 1.05;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.page-band {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 88px);
}

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

.text-columns article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.text-columns h2 {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 2vw, 2rem);
}

.text-columns p {
  color: var(--muted);
}

.page-lead {
  max-width: 840px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-section.muted,
.auth-section {
  background: var(--soft);
}

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

.faq-list details {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0 22px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary span {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--moss);
  font-size: 0.78rem;
}

.faq-list details p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 18px 0 22px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.contact-grid h2,
.auth-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.08;
}

.contact-grid p,
.login-required p,
.auth-card p {
  color: var(--muted);
}

.contact-panel,
.auth-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: clamp(22px, 4vw, 38px);
}

.contact-form,
.auth-card {
  display: grid;
  gap: 16px;
}

.contact-form label,
.auth-card label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.auth-card input {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.member-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.member-box div {
  display: grid;
  gap: 2px;
}

.member-box span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.member-box button,
.auth-card a {
  border: 0;
  background: none;
  color: var(--moss);
  font-weight: 800;
  cursor: pointer;
}

.naver-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid #03c75a;
  background: #03c75a;
  color: #fff !important;
  font-weight: 900;
}

.kakao-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid #fee500;
  background: #fee500;
  color: #191919 !important;
  font-weight: 900;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.inquiry-entry {
  display: grid;
  gap: 14px;
}

.inquiry-entry h3 {
  margin: 0;
  font-size: 1.5rem;
}

.inquiry-entry p {
  margin: 0;
}

.inquiry-entry .button {
  width: fit-content;
}

.inquiry-dialog {
  width: min(92vw, 620px);
  max-height: min(86vh, 760px);
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
}

.inquiry-dialog::backdrop {
  background: rgba(23, 21, 19, 0.62);
  backdrop-filter: blur(5px);
}

.dialog-shell {
  display: grid;
  gap: 18px;
  max-height: min(86vh, 760px);
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--white);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 30px 90px rgba(23, 21, 19, 0.28);
}

.dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.dialog-head h3 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.dialog-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.login-required {
  display: grid;
  gap: 14px;
}

.login-required h3 {
  margin: 0;
  font-size: 1.5rem;
}

.notice {
  margin-bottom: 16px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-weight: 800;
}

.notice.success {
  background: rgba(95, 115, 95, 0.12);
  color: var(--moss);
}

.notice.error {
  background: rgba(179, 107, 82, 0.12);
  color: var(--clay);
}

.auth-section {
  display: grid;
  justify-items: center;
}

.auth-card {
  width: min(100%, 520px);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .frame-one {
    right: -10vw;
    width: 46vw;
  }

  .frame-two {
    right: 36vw;
    width: 26vw;
  }

  .frame-three {
    right: 6vw;
    width: 32vw;
  }

  .value-grid,
  .style-gallery,
  .designer-grid,
  .process-line,
  .text-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .reservation,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .space-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 18px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero {
    min-height: 92svh;
    padding: 110px 20px 58px;
  }

  .page-hero {
    min-height: 72svh;
    padding: 112px 20px 56px;
  }

  .page-hero::after {
    right: -20vw;
    bottom: 12vh;
    width: 68vw;
    opacity: 0.5;
  }

  .hero h1 {
    font-size: clamp(4.3rem, 24vw, 6.5rem);
  }

  .hero-frame {
    opacity: 0.5;
  }

  .frame-one {
    top: 18vh;
    right: -22vw;
    width: 68vw;
  }

  .frame-two,
  .frame-three {
    display: none;
  }

  .hero-note {
    display: none;
  }

  .section {
    padding: 70px 20px;
  }

  .value-grid,
  .style-gallery,
  .designer-grid,
  .process-line,
  .space-grid,
  .text-columns {
    grid-template-columns: 1fr;
  }

  .value-grid article,
  .process-line li {
    min-height: 190px;
  }

  .philosophy-list div,
  .journal-list a,
  .style-card dl div,
  .reservation-panel dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .style-image,
  .portrait {
    min-height: 280px;
  }

  .space-grid .large {
    grid-row: auto;
  }

  .footer {
    flex-direction: column;
  }

  .inquiry-entry .button,
  .dialog-actions .button {
    width: 100%;
  }
}
