/* ================================================================
   Victoria Blanche — Unified Stylesheet
   ================================================================ */

:root {
  --primary-color: #c8a676;
  --secondary-color: rgba(200, 166, 118, 0.12);
  --bg-color: #faf7f3;
  --black-color: #1f1a17;
  --white-color: #ffffff;
  --muted-color: #827568;
  --border-color: rgba(0,0,0,0.06);
  --border-radius-lg: 20px;
  --border-radius-xl: 28px;
  --footer-bg-color: #f3ebe2;
  --placeholder-bg-color: #f4eee6;
  --placeholder-bg-dark: #ebe4da;
  --error-color: #c25050;
  --error-dark-color: #a03030;
}

body {
  background-color: var(--bg-color);
  color: var(--black-color);
  font-family: "Noto Sans KR", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ================================================================
   Header
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(to bottom, rgba(250,247,243,0.95), rgba(250,247,243,0.80));
  border-bottom: 1px solid var(--border-color);
}

/* backdrop-filter를 ::before로 분리 —
   backdrop-filter를 요소 자체에 두면 position:fixed 자손의 containing block이 되어
   nav-list가 viewport가 아닌 site-header 기준으로 고정되는 부작용이 생긴다.
   ::before는 nav-list의 조상이 아니므로 containing block에 영향을 주지 않는다. */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: -1;
}

.site-main {
  padding-top: 90px;
  padding-bottom: 120px;
  min-height: 80vh;
}

.site-main > .section:first-child {
  padding-top: 0;
}

.site-main > .section:last-child {
  padding-bottom: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-main {
  letter-spacing: 0.22em;
  font-size: 13px;
  font-weight: 600;
}

.logo-sub {
  font-size: 11px;
  color: var(--muted-color);
}

/* ================================================================
   Footer
   ================================================================ */
.site-footer {
  padding: 60px 0;
  background: var(--footer-bg-color);
  border-top: 1px solid var(--border-color);
  font-size: 14px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 0 48px;
  align-items: start;
}

.footer-h-card {
  display: contents;
}

.footer-heading {
  display: block;
  letter-spacing: 0.22em;
  font-size: 14px;
  font-weight: 700;
}

.footer-desc {
  color: var(--muted-color);
}

/* 주소/연락처/소셜 컬럼 */
.footer-col {
  text-align: right;
}

.footer-col-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black-color);
}

.footer-col-label--mt {
  margin-top: 16px;
}

.footer-col-body {
  font-style: normal;
  color: var(--muted-color);
}

/* 하단 법적 고지 영역 */
.footer-legal {
  grid-column: 1 / -1;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  color: var(--muted-color);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: var(--black-color);
  margin-bottom: 4px;
}

.footer-biz {
  margin: 0;
}

.footer-copyright {
  margin: 0;
  white-space: nowrap;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* ================================================================
   Buttons
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 18px;
  border: none;
  cursor: pointer;
  transition: background .12s ease-out, box-shadow .2s ease-out;
}

.btn.primary {
  background: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 2px 8px rgba(200,166,118,0.3);
}

.btn.primary:hover {
  box-shadow: 0 4px 16px rgba(200,166,118,0.4);
}

.btn.ghost {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn.ghost:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(200,166,118,0.2);
}

.btn.outline:hover {
  box-shadow: 0 4px 16px rgba(200,166,118,0.35);
}

.btn.kakao-btn {
  background: #fee500;
  color: #3a1d1d;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* ================================================================
   Sections 공통
   ================================================================ */
.section {
  padding: 56px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-kicker {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-color);
  margin-bottom: 6px;
}

.section-header h2 {
  margin: 0;
  font-size: 24px;
}

.section-title-sm {
  margin: 0 0 18px;
  font-size: 20px;
}

.section-desc {
  margin: 0 0 20px;
  color: var(--muted-color);
}

/* ================================================================
   Subpages 공통
   ================================================================ */
.sub-hero {
  padding: 50px 0;
  background: linear-gradient(140deg, #f6efe6, #faf7f3);
  border-bottom: 1px solid var(--border-color);
}

.sub-main-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.sub-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-color);
  margin-bottom: 8px;
}

.sub-hero h1 {
  margin: 0 0 10px;
  font-size: 26px;
}

.sub-desc {
  margin: 0;
  color: var(--muted-color);
}

.sub-main-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.stat {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border-color);
  font-size: 12px;
}

.stat-label {
  color: var(--muted-color);
  margin-right: 6px;
}

.stat-value {
  font-weight: 600;
}

.empty-state {
  text-align: center;
  padding: 48px 0;
}

.empty-message {
  font-size: 14px;
  color: var(--muted-color);
}

.text-link {
  text-decoration: underline;
}

.text-link:hover {
  text-decoration: none;
}

/* ================================================================
   Detail 공통
   ================================================================ */
.detail-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted-color);
}

.sub-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--secondary-color);
  font-size: 14px;
  font-weight: 500;
  color: var(--black-color);
}

.detail-back-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ================================================================
   Filter chips (collection, gallery, news, notice 공통)
   ================================================================ */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-chips .chip {
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--white-color);
  padding: 8px 18px;
  cursor: pointer;
  text-decoration: none;
  color: var(--black-color);
}

.filter-chips .chip.is-active {
  border-color: var(--primary-color);
  background: var(--secondary-color);
}

/* ================================================================
   Card
   ================================================================ */
.card {}

.card .card-inner {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--white-color);
  border: 1px solid var(--border-color);
}

.card .card-head {
  background-color: var(--placeholder-bg-dark);
  background-image: linear-gradient(135deg, var(--placeholder-bg-color) 0%, var(--placeholder-bg-dark) 100%);
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card .card-thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card .card-body {
  position: relative;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  flex-direction: column;
}

.card .card-title {
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card .card-description {
  font-size: 16px;
  color: var(--muted-color);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card .card-badge {
  flex-shrink: 0;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--secondary-color);
  font-size: 12px;
}

.card .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.card .card-tag {
  font-size: 13px;
  color: var(--muted-color);
}

/* 카드 이미지 우상단 핀 리본 */
.card .card.is-pinned .card-head::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 40px 40px 0;
  border-color: transparent var(--primary-color) transparent transparent;
  z-index: 2;
  pointer-events: none;
}

.card .card.is-pinned .card-head::after {
  content: '';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 13px;
  height: 17px;
  background-color: var(--white-color);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 13'%3E%3Ccircle cx='5' cy='4' r='4'/%3E%3Crect x='4' y='7' width='2' height='6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 13'%3E%3Ccircle cx='5' cy='4' r='4'/%3E%3Crect x='4' y='7' width='2' height='6'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 3;
  pointer-events: none;
}

/* ================================================================
   Pagination (news, notice, collection 공통)
   ================================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 32px;
  padding: 0;
  list-style: none;
}

.pagination .page-item {
  display: flex;
}

.pagination .page-item .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  color: var(--black-color);
  text-decoration: none;
  background: var(--white-color);
  line-height: 1;
}

.pagination .page-item .page-link:hover {
  background: var(--secondary-color);
  border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
  font-weight: 600;
}

.pagination .page-item.disabled .page-link {
  color: var(--muted-color);
  opacity: 0.45;
  pointer-events: none;
  background: rgba(255,255,255,0.6);
}

.pagination .page-item .page-link svg {
  display: block;
}

/* ================================================================
   Post Navigation
   ================================================================ */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
}

.post-nav .post-nav-item a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: var(--black-color);
}

.post-nav .post-nav-item a:hover .post-nav-title {
  color: var(--primary-color);
}

.post-nav .post-nav-label {
  font-size: 14px;
  color: var(--muted-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.post-nav .post-nav-title {
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-nav .post-nav-next {
  text-align: right;
}

.post-nav .post-nav-empty-state {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.post-nav .post-nav-title.post-nav-empty {
  color: var(--muted-color);
  font-weight: 400;
  opacity: 0.5;
}

/* ================================================================
   Article 목록 영역
   ================================================================ */
.archive .h-feed {
  border-top: 1px solid var(--border-color);
}

.archive .h-entry {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

/* Thumbnail (선택적) */
.archive .h-entry .entry-thumbnail {
  display: block;
  border-radius: var(--border-radius-lg);
  margin-bottom: 16px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--placeholder-bg-color);
}

.archive .h-entry .entry-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.archive .h-entry:hover .entry-thumbnail img {
  transform: scale(1.04);
}

/* Meta (카테고리, 날짜) */
.archive .h-entry .entry-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.archive .h-entry .entry-category {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.archive .h-entry .entry-date {
  font-size: 13px;
  color: var(--muted-color);
}

/* Title */
.archive .h-entry .entry-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.archive .h-entry .entry-title a {
  color: var(--black-color);
  text-decoration: none;
  transition: color 0.2s;
}

.archive .h-entry .entry-title a:hover {
  color: var(--primary-color);
}

/* Summary */
.archive .h-entry .entry-summary {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--muted-color);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer / Tags */
.archive .h-entry .entry-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.archive .h-entry .entry-tag {
  font-size: 12px;
  color: var(--muted-color);
}

/* 고정글 (is-pinned) */
.archive .h-entry.is-pinned {
  border-left: 3px solid var(--primary-color);
  padding-left: 20px;
  background: var(--secondary-color);
}


/* ================================================================
   Article 본문 영역
   ================================================================ */
.post .h-entry {
  margin-bottom: 48px;
}

.post .h-entry .entry-thumbnail {
  display: block;
  margin-bottom: 32px;
  border-radius: var(--border-radius-xl);
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--placeholder-bg-color);
}

.post .h-entry .entry-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.post .h-entry .e-content {
  line-height: 1.8;
  color: var(--black-color);
  margin-bottom: 28px;
}

.post .h-entry .e-content h2,
.post .h-entry .e-content h3 {
  margin: 1.5em 0 0.5em;
}

.post .h-entry .e-content p {
  margin: 0 0 1em;
}

.post .h-entry .e-content img {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
}

.post .h-entry .entry-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.post .h-entry .entry-tag {
  font-size: 14px;
  color: var(--muted-color);
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 4px 12px;
}

.post .h-entry .entry-ref {
  margin-top: 20px;
}

/* ================================================================
   Masonry Grid
   ================================================================ */
.grid {
  display: block;
  width: 100%;
  margin: -8px;
}

.grid .gutter-sizer {
  width: 0;
}

.grid .grid-sizer,
.grid .grid-item {
  width: 25%;
}

.grid .grid-item {
  padding: 8px;
}

.archive .grid {
  border-top: none;
}
.archive .grid .grid-item {
  border-bottom: none;
}
.archive .grid .grid-item.is-pinned {
  border-left: none;
  padding-left: 8px;
  background: transparent;
}

/* ================================================================
   Form 공통 (Contact, Fitting)
   ================================================================ */

/* Captcha */
.captcha-field {
  margin-bottom: 10px;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.captcha-image {
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.12);
  display: block;
}

.captcha-refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white-color);
  font-size: 18px;
  cursor: pointer;
  color: var(--muted-color);
  transition: color .12s, border-color .12s;
  flex-shrink: 0;
}

.captcha-refresh:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Form */
.contact-form {
  border-radius: var(--border-radius-lg);
  background: var(--white-color);
  border: 1px solid var(--border-color);
  padding: 32px;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

input[type="text"],
input[type="tel"],
input[type="date"],
input[type="datetime-local"],
select,
textarea {
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 8px 9px;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: var(--white-color);
}

textarea {
  resize: vertical;
}

.form-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.form-check-input {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin-top: 0;
  border: 1.5px solid rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  background-color: var(--white-color);
  cursor: pointer;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8l3 3l5-5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem;
}

.form-check:hover .form-check-input:not(:checked) {
  border-color: var(--primary-color);
}

.form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 166, 118, 0.25);
}

.form-check-label {
  color: var(--muted-color);
  cursor: pointer;
  line-height: 1.4;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 16px;
}

.form-actions button[type="submit"] {
  min-width: 120px;
}

.required {
  color: var(--error-color);
}

.form-result {
  padding: 32px;
  border-radius: 10px;
}

.form-result-success {
  background: var(--white-color);
  border: 1px solid rgba(34, 139, 34, 0.18);
  text-align: center;
}

.form-result-success p {
  margin-bottom: 10px;
}

.form-result-success p:last-child {
  margin-bottom: 0;
}

.form-result-success .form-result-title {
  font-weight: 600;
  margin-bottom: 14px;
}

.form-result-success a {
  color: inherit;
  text-decoration: underline;
}

.lottie-success-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.form-result-error {
  background: rgba(200, 50, 50, 0.08);
  color: var(--error-dark-color);
  border: 1px solid rgba(200, 50, 50, 0.18);
}

/* ================================================================
   Home
   ================================================================ */

/* Hero */
.home .hero {
  position: relative;
  padding: 64px 0 80px;
  background: radial-gradient(circle at top left, #f4ebe0 0, #faf7f3 40%, #fdfcfb 100%);
}

.home .hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.4), transparent 55%);
  pointer-events: none;
}

.home .hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.home .hero-kicker {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--muted-color);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.home .hero h1 {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.home .hero-sub {
  margin: 0 0 22px;
  color: var(--muted-color);
}

.home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.home .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  font-size: 14px;
  color: var(--muted-color);
}

.home .hero-meta span::before {
  content: "• ";
}

.home .hero-card {
  background: linear-gradient(145deg, var(--white-color), rgba(255,250,244,0.98));
  border-radius: var(--border-radius-xl);
  padding: 22px 22px 20px;
  box-shadow: 0 18px 45px rgba(15, 9, 3, 0.12);
  border: 1px solid var(--white-color);
}

.home .hero-card h2 {
  font-size: 18px;
  margin: 0 0 4px;
}

.home .hero-card-tag {
  font-size: 12px;
  color: var(--muted-color);
  margin-bottom: 10px;
}

.home .hero-card-desc {
  font-size: 13px;
  color: var(--muted-color);
  margin-bottom: 16px;
}

.home .hero-card-meta {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  font-size: 12px;
}

.home .hero-card-meta li {
  display: flex;
  gap: 10px;
  margin-bottom: 4px;
}

.home .hero-card-meta span {
  min-width: 46px;
  color: var(--muted-color);
}

.home .hero-card-link {
  font-size: 12px;
  text-decoration: underline;
}

/* Grid & Cards */
.home .home-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.home .features .feature-card,
.home .collections .collection-card {
  padding: 21px 20px 18px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 4px 20px rgba(15, 9, 3, 0.07);
  transition: box-shadow 0.2s ease-out;
}

.home .features .feature-card:hover,
.home .collections .collection-card:hover {
  box-shadow: 0 8px 32px rgba(15, 9, 3, 0.12);
}

.home .feature-card h3,
.home .collection-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
}

.home .feature-card p,
.home .collection-card p {
  color: var(--muted-color);
  margin-top: 0;
}

.home .feature-card ul,
.home .collection-card ul {
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--muted-color);
}

/* CTA Section */
.home .section-cta {
  background: linear-gradient(135deg, #f6efe6, #fdfaf7);
}

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

.home .cta-inner h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
}

.home .cta-inner p {
  margin: 0;
  color: var(--muted-color);
}

.home .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Real Wedding Cards */
.home .real-wedding-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 9, 3, 0.07);
  background: var(--white-color);
  border: 1px solid var(--border-color);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease-out;
}

.home .real-wedding-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 32px rgba(15, 9, 3, 0.12);
}

.home .real-wedding-thumb {
  position: relative;
  padding-top: 65%;
  background: linear-gradient(135deg, #f0ebe4 0%, #e8e1d8 100%);
  overflow: hidden;
}

.home .real-wedding-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.25s ease-out;
}

.home .real-wedding-card:hover .real-wedding-thumb img {
  transform: scale(1.03);
}

.home .real-wedding-thumb:not(:has(img))::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--muted-color);
}

.home .real-wedding-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 18px 16px 20px;
  text-align: center;
}

.home .real-wedding-name {
  font-weight: 600;
}

.home .real-wedding-label {
  color: var(--muted-color);
}

.home .section-more {
  text-align: center;
  margin-top: 28px;
}

/* ================================================================
   About
   ================================================================ */
.about .about-grid {
  display: flex;
  gap: 32px;
}

.about .about-block {
  width: 50%;
  padding: 24px 32px;
  border-radius: var(--border-radius-lg);
  background: var(--white-color);
  border: 1px solid var(--border-color);
}

.about .about-block h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
}

.about .about-block p {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--muted-color);
}

.about .about-block ul {
  color: var(--muted-color);
}

/* ================================================================
   Contact
   ================================================================ */
.contact .kakao-box {
  border-radius: var(--border-radius-lg);
  background: var(--white-color);
  border: 1px solid var(--border-color);
  padding: 32px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.contact .kakao-text {
  color: var(--muted-color);
}

.contact .kakao-text p {
  margin-top: 0;
  margin-bottom: 6px;
}

.contact .kakao-text ul {
  margin: 0;
}

.contact .kakao-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

/* ================================================================
   Fitting
   ================================================================ */

/* Steps */
.fitting .steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fitting .step {
  padding: 18px 16px;
  border-radius: var(--border-radius-lg);
  background: var(--white-color);
  border: 1px solid var(--border-color);
}

.fitting .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--secondary-color);
  margin-bottom: 6px;
}

.fitting .step h3 {
  margin: 0 0 6px;
}

.fitting .step p {
  margin: 0;
  color: var(--muted-color);
}

/* CTA & Table */
.fitting .fitting-cta {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  border-radius: var(--border-radius-lg);
  background: var(--secondary-color);
}

.fitting .fitting-table-wrap {
  border-radius: var(--border-radius-lg);
  background: var(--white-color);
  border: 1px solid var(--border-color);
  padding: 16px 16px 12px;
}

.fitting .fitting-table {
  width: 100%;
  border-collapse: collapse;
}

.fitting .fitting-table th,
.fitting .fitting-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.fitting .fitting-table thead th {
  background: rgba(250,247,243,0.9);
  text-align: left;
}

.fitting .fitting-table tbody tr:last-child td {
  border-bottom: none;
}

.fitting .fitting-note {
  margin: 8px 0 0;
  color: var(--muted-color);
}

/* ================================================================
   Location
   ================================================================ */
.location .location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 48px;
  align-items: flex-start;
}

.location .location-info {
  width: 100%;
}

.location .location-info .info-header {
  margin-bottom: 8px;
}

.location .location-map .map-embed {
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid var(--white-color);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  height: 480px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.location .location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.location .map-link-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}

/* 통합 안내 카드 그리드 */
.location .location-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.location .loc-info-card {
  border-radius: 16px;
  padding: 20px 22px;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.location .loc-info-card h3 {
  margin-bottom: 8px;
}

.location .loc-info-list {
  margin: 10px 0 0;
  color: var(--muted-color);
}

/* Contact Items */
.location .contact-item {
  margin-bottom: 16px;
}

.location .contact-item .label-text {
  font-weight: 500;
  color: var(--muted-color);
  display: inline-block;
}

.location .contact-item .value {
  font-weight: 500;
  color: var(--black-color);
}

.location .contact-item .value-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.location .contact-item .text-box {
  width: 100%;
}

.location .contact-item .contact-link {
  color: var(--black-color);
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}

.location .contact-item .contact-link:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.location .contact-item .kakao-id {
  font-size: 16px;
  color: var(--black-color);
}

/* Transport List */
.location .transport-list {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.location .transport-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 15px;
}

.location .transport-item:last-child {
  margin-bottom: 0;
}

.location .transport-item .tp-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--black-color);
  flex-shrink: 0;
}

.location .transport-item .tp-content strong {
  font-weight: 600;
  color: var(--black-color);
}

.location .transport-item .tp-content p {
  color: var(--muted-color);
}

/* Map App Buttons */
.location .location-map .map-links {
  display: block;
  margin-top: 24px;
}

.location .location-map .map-links h3 {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black-color);
}

.location .btn-map-app {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 48px;
  border-radius: 12px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  color: var(--black-color);
  font-weight: 500;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.location .btn-map-app .icon {
  font-weight: 900;
}

.location .btn-map-app.naver { color: #03C75A; border-color: rgba(3, 199, 90, 0.2); }
.location .btn-map-app.kakao { color: #391B1B; border-color: rgba(254, 229, 0, 0.4); background-color: #FEE500; }
.location .btn-map-app.google { color: #4285F4; border-color: rgba(66, 133, 244, 0.2); }

.location .btn-map-app:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ================================================================
   Barba.js 페이지 전환
   ================================================================ */
[data-barba="wrapper"] {
  position: relative;
}

[data-barba="container"] {
  width: 100%;
}
