:root {
  /*
  스타일 프리셋: Modern Boutique Luxe
  컬러 전략: Deep Plum + Rose Gold + Cloud White
  레이아웃 패턴: Split-Screen Hero + Card Mosaic Grid
  섹션 순서 템플릿: Header → Hero → Signature Services → Lookbook/Collection → About → Visit/Contact → Business Info → Footer
  아이콘 스타일: Elegant Duotone SVG (두께 대비, 로컬 SVG로 직접 생성)
  배경 패턴: Soft Spotlight + Subtle Noise (CSS-only, no external assets)
  */
  /* Palette options (DNA-based):
     A) Deep Plum #2f0f2f, Rose Gold #c9897e, Cloud White #f6f2f1
     B) Deep Plum #3a1236, Rose Gold #d7a097, Cloud White #f7f4f2
     C) Deep Plum #2b0f2a, Rose Gold #c07c72, Cloud White #f5f1f0
     Selected: A
  */
  --plum: #2f0f2f;
  --rose-gold: #c9897e;
  --cloud: #f6f2f1;
  --plum-80: rgba(47, 15, 47, 0.8);
  --plum-40: rgba(47, 15, 47, 0.4);
  --rose-40: rgba(201, 137, 126, 0.4);
  --line: rgba(47, 15, 47, 0.14);
  --shadow: 0 24px 60px rgba(47, 15, 47, 0.12);
  --radius: 22px;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--plum);
  background-color: var(--cloud);
  line-height: 1.6;
  background-image:
    radial-gradient(1200px 500px at 10% 0%, rgba(201, 137, 126, 0.25), transparent 60%),
    radial-gradient(800px 400px at 90% 10%, rgba(47, 15, 47, 0.2), transparent 55%),
    repeating-radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(120deg, rgba(47, 15, 47, 0.02) 0 2px, transparent 2px 6px);
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--rose-gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
  background: var(--plum);
  color: var(--cloud);
  padding: 8px 12px;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(246, 242, 241, 0.85);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand img {
  width: 148px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--plum);
  margin: 4px 0;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.nav-menu a {
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  border-bottom-color: var(--rose-gold);
}

.hero {
  padding: 80px 0 70px;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--plum-80);
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin: 12px 0 18px;
}

.lead {
  font-size: 1.05rem;
  color: var(--plum-80);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--plum);
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--plum);
  color: var(--cloud);
  box-shadow: 0 12px 24px rgba(47, 15, 47, 0.18);
}

.btn.ghost {
  background: transparent;
  color: var(--plum);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-art {
  background: linear-gradient(140deg, rgba(201, 137, 126, 0.12), rgba(47, 15, 47, 0.2));
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.section {
  padding: 80px 0;
}

.section-head {
  margin-bottom: 40px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
}

.section-head p {
  margin: 0;
  color: var(--plum-80);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(47, 15, 47, 0.08);
}

.service-card h3 {
  margin: 18px 0 10px;
}

.icon {
  width: 42px;
  height: 42px;
  --tone1: var(--plum);
  --tone2: var(--rose-gold);
}

.lookbook {
  background: linear-gradient(180deg, rgba(47, 15, 47, 0.04), transparent);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.look-tile {
  border-radius: 18px;
  min-height: 160px;
  background:
    linear-gradient(140deg, rgba(201, 137, 126, 0.2), rgba(47, 15, 47, 0.25)),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 60%);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.look-tile::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.tile-label {
  position: relative;
  z-index: 1;
  background: rgba(246, 242, 241, 0.85);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.process {
  padding-left: 18px;
  margin-top: 18px;
}

.trust-box {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust-box ul {
  padding-left: 18px;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: start;
}

.landmark {
  font-size: 0.9rem;
  color: var(--plum-80);
}

.visit-form {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.visit-form form {
  display: grid;
  gap: 12px;
}

.visit-form input,
.visit-form textarea {
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 10px 12px;
  font-family: inherit;
}

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

.inquiry-list {
  margin-top: 16px;
  background: rgba(246, 242, 241, 0.9);
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.inquiry-item {
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 10px;
  font-size: 0.9rem;
}

.business .info-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.info-table th {
  width: 140px;
  font-weight: 600;
  color: var(--plum-80);
}

.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: rgba(47, 15, 47, 0.04);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: 600;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--plum);
  color: var(--cloud);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .nav-menu {
    position: absolute;
    right: 5vw;
    top: 70px;
    background: rgba(246, 242, 241, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 12px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 64px 0 50px;
  }

  .section {
    padding: 60px 0;
  }

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