:root {
  --surface: #fff8f6;
  --surface-low: #fff1ed;
  --surface-mid: #ffe9e4;
  --surface-high: #ffdad2;
  --primary: #693a35;
  --primary-soft: #84514b;
  --secondary: #7b5552;
  --text: #2e150e;
  --muted: #524342;
  --outline: #d6c2bf;
  --white-glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 10px 30px rgba(132, 81, 75, 0.08);
  --shadow-strong: 0 20px 50px rgba(105, 58, 53, 0.15);
  --radius-sm: 0.75rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --top-nav-clearance: 6.5rem;
  --mobile-page-gutter: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--top-nav-clearance);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 218, 210, 0.8), transparent 32rem),
    linear-gradient(180deg, var(--surface) 0%, #fffaf8 50%, var(--surface-low) 100%);
  color: var(--text);
  font-family: "Pretendard Variable", Pretendard, "Plus Jakarta Sans", "Noto Sans KR", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: break-word;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: relative;
  min-height: 100svh;
  padding: 1rem 0 4rem;
}

.top-nav {




  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(214, 194, 191, 0.5);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.brand-text {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.nav-links {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100svh - 2rem);
  width: auto;
  max-width: 1120px;
  margin: 0 1.5rem;
  padding-top: 6rem;
}

.hero-media {
  position: absolute;
  inset: 5.5rem 0 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface-mid);
  box-shadow: var(--shadow-strong);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 248, 246, 0.1), rgba(255, 248, 246, 0.92));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-card {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 42svh auto 0;
  padding: 2rem 1.35rem;
  text-align: center;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-top-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  background: var(--white-glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--primary-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}

p,
li,
blockquote {
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  color: var(--text);
  font-family: "Pretendard Variable", Pretendard, "Plus Jakarta Sans", "Noto Sans KR", system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  color: var(--primary);
  font-size: clamp(2rem, 9vw, 2.35rem);
}

h1 span {
  display: block;
}

h2 {
  font-size: 2rem;
}

h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.35;
}

.hero-card p:not(.eyebrow),
.section-heading p,
.section-copy p,
.artist-card p,
.manager-copy p,
.booking-section > p {
  color: var(--muted);
}

.hero-card p:not(.eyebrow) {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.home-hero .hero-card h1 {
  font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: -0.02em;
}

.button-row {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 24px rgba(105, 58, 53, 0.2);
}

.button-secondary {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.35);
}

.section {
  width: auto;
  max-width: 1120px;
  margin: 0 1.5rem;
  padding: 4rem 0;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.section-heading.center {
  text-align: center;
}

.intro-section {
  display: grid;
  gap: 2rem;
}

.feature-stack,
.service-grid,
.booking-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.service-card {
  padding: 1.35rem;
}

.feature-card span,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.25rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--surface-high);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-section {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 4rem 1.5rem;
  background: var(--surface-low);
}

.service-section > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.service-card strong {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--primary);
  font-size: 0.9rem;
}

.design-section {
  max-width: 1120px;
  padding: 4rem 1.25rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 12%, rgba(255, 255, 255, 0.78), transparent 15rem),
    linear-gradient(135deg, #fbf6f1 0%, #fffaf6 52%, #faf3ee 100%);
  box-shadow: 0 18px 48px rgba(120, 80, 65, 0.08);
}

.design-feature {
  display: grid;
  gap: 1.5rem;
}

.design-copy {
  min-width: 0;
}

.design-copy h2 {
  color: #2b120b;
  font-family: "Pretendard Variable", Pretendard, "Plus Jakarta Sans", "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(2.15rem, 11vw, 3.4rem);
  font-weight: 800;
  line-height: 1.22;
}

.design-copy p:not(.eyebrow) {
  max-width: 24rem;
  margin: 1.25rem 0 0;
  color: #7a6258;
  font-size: 1rem;
  line-height: 1.8;
}

.design-main-card {
  position: relative;
  min-height: 19rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #e8d6c7;
  box-shadow: var(--shadow-strong);
}

.design-main-card img {
  width: 100%;
  height: 100%;
  min-height: 19rem;
  object-fit: cover;
}

.design-main-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 18, 11, 0) 40%, rgba(43, 18, 11, 0.48) 100%);
}

.design-badge {
  position: absolute;
  z-index: 1;
  top: 1rem;
  right: 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(43, 18, 11, 0.58);
  color: #fffaf6;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.design-card-caption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  color: white;
}

.design-card-caption h3,
.design-card-caption p {
  margin: 0;
}

.design-card-caption h3 {
  color: white;
  font-size: 1.1rem;
}

.design-card-caption p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.design-card-caption strong {
  flex: 0 0 auto;
  font-size: 1.1rem;
}

.design-keywords {
  margin-top: 2rem;
  padding: 1.35rem;
  border: 1px solid rgba(120, 80, 65, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 246, 0.72);
}

.design-keywords h3 {
  color: #5e3128;
  font-size: 1.2rem;
}

.design-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.design-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(120, 80, 65, 0.12);
  border-radius: 999px;
  background: #f6e7df;
  color: #6b4339;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(120, 80, 65, 0.06);
}

.place-card {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #f9e9e2, #fffaf6);
}

.place-copy {
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.place-icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: #dfbdb1;
  color: #6b4339;
  font-weight: 900;
}

.place-copy p {
  margin: 0;
  color: #5f4037;
  line-height: 1.7;
}

.place-preview {
  padding: 1rem;
  border: 0.8rem solid rgba(255, 255, 255, 0.62);
  border-radius: 1.6rem;
  background: #fff;
  box-shadow: 0 14px 30px rgba(120, 80, 65, 0.12);
}

.place-preview-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  align-items: center;
  color: #7a6258;
  font-size: 0.82rem;
}

.place-preview-head strong {
  color: #4b241c;
}

.naver-icon {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.4rem;
  background: #31c75a;
  color: #fff;
  font-weight: 900;
}

.place-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  margin-top: 0.85rem;
}

.place-thumbs span {
  min-height: 3.4rem;
  border-radius: 0.7rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(139, 95, 85, 0.18)),
    url("images/design-main.jpg") center / cover;
}

.design-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.design-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.75rem;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 900;
}

.design-button span {
  margin-left: 0.65rem;
}

.design-button-primary {
  background: linear-gradient(135deg, #8b5f55, #75443c);
  color: #fffaf6;
  box-shadow: 0 14px 24px rgba(117, 68, 60, 0.18);
}

.design-button-secondary {
  border: 1px solid rgba(120, 80, 65, 0.22);
  background: rgba(255, 250, 246, 0.82);
  color: #75443c;
}

.price-section {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 4rem 1.5rem;
  background: var(--surface-mid);
}

.price-card {
  max-width: 46rem;
  margin: 0 auto;
  padding: 1.35rem;
}

.price-selector {
  position: relative;
  z-index: 3;
  margin-top: 1.5rem;
}

.price-select-button {
  display: flex;
  width: 100%;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(214, 194, 191, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  color: var(--primary);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.price-select-icon {
  flex: 0 0 auto;
  color: var(--primary-soft);
  font-size: 1.2rem;
  line-height: 1;
}

.price-category-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  left: 0;
  z-index: 30;
  overflow: hidden;
  border: 1px solid rgba(214, 194, 191, 0.72);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-strong);
}

.price-category-menu[hidden],
.price-panel[hidden] {
  display: none;
}

.price-category-option {
  display: block;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 0;
  border-bottom: 1px solid rgba(214, 194, 191, 0.42);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.price-category-option:last-child {
  border-bottom: 0;
}

.price-category-option:hover,
.price-category-option:focus,
.price-category-option.is-active {
  background: rgba(105, 58, 53, 0.08);
  color: var(--primary);
  outline: none;
}

.price-result-panel {
  margin-top: 1rem;
  padding: 0 0.15rem;
}

.price-panel h3 {
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(105, 58, 53, 0.18);
  font-family: "Pretendard Variable", Pretendard, "Plus Jakarta Sans", "Noto Sans KR", system-ui, sans-serif;
  font-size: 1.4rem;
}

.price-group {
  margin-top: 2rem;
}

.price-group h3 {
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(105, 58, 53, 0.18);
  font-family: "Pretendard Variable", Pretendard, "Plus Jakarta Sans", "Noto Sans KR", system-ui, sans-serif;
  font-size: 1.4rem;
}

.price-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(214, 194, 191, 0.52);
}

.price-list span {
  color: var(--muted);
}

.price-list strong {
  flex: 0 0 auto;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(105, 58, 53, 0.08);
  color: var(--primary);
  font-size: 0.88rem;
}

.notice {
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.artist-section {
  display: grid;
  gap: 1.25rem;
}

.artist-card,
.manager-copy,
.info-list {
  padding: 1.35rem;
}

.manager-card {
  display: grid;
  gap: 1rem;
}

.manager-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
}

.location-section {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 4rem 1.5rem;
  background: var(--surface-low);
}

.location-section > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.location-grid {
  display: grid;
  gap: 1rem;
}

.info-list {
  display: grid;
  gap: 1rem;
}

.info-list div {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(214, 194, 191, 0.55);
}

.info-list span {
  color: var(--primary-soft);
  font-size: 0.8rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--primary);
  font-weight: 800;
  border-bottom: 1px solid var(--primary);
}

.map-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(214, 194, 191, 0.6);
  border-radius: var(--radius-xl);
  background: var(--surface-mid);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.map-card > img {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

.map-card-overlay {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 0.2rem;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(
    180deg,
    rgba(46, 21, 14, 0) 0%,
    rgba(46, 21, 14, 0.72) 100%
  );
  color: white;
}

.map-card-overlay strong {
  font-family: "Pretendard Variable", Pretendard, "Plus Jakarta Sans", "Noto Sans KR", system-ui, sans-serif;
  font-size: 1.15rem;
  line-height: 1.4;
}

.map-card-overlay span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 839px) {
  .map-card {
    aspect-ratio: 4 / 3;
  }

  .map-card > img {
    inset: -5%;
    width: 110%;
    height: 110%;
  }
}

.booking-section {
  text-align: center;
}

.booking-grid {
  margin-top: 1.5rem;
}

.booking-button {
  display: grid;
  gap: 0.25rem;
  min-height: 6.5rem;
  align-content: center;
  padding: 1.25rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.booking-button span {
  color: var(--primary-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.booking-button strong {
  font-size: 1.05rem;
}

.booking-button:hover,
.booking-button:focus-visible {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.booking-button:hover span,
.booking-button:focus-visible span {
  color: #ffede9;
}

.site-footer {
  display: grid;
  gap: 0.35rem;
  padding: 1.75rem 1.5rem 6rem;
  border-top: 1px solid rgba(214, 194, 191, 0.38);
  background: rgba(255, 250, 248, 0.92);
  color: var(--muted);
  text-align: center;
}

.site-footer strong {
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.25rem;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
}

.bottom-nav {
  position: fixed;
  z-index: 30;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 0.7rem 1rem max(0.7rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(214, 194, 191, 0.55);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 -5px 20px rgba(132, 81, 75, 0.05);
  backdrop-filter: blur(18px);
}

.bottom-nav a {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 2.9rem;
  border-radius: 999px;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}


.bottom-nav a[aria-current="page"] {
  background: var(--primary);
  color: white;
}

body.modal-open {
  overflow: hidden;
}

.gallery-main {
  min-height: 70vh;
}

.gallery-intro,
.gallery-content {
  width: auto;
  max-width: 1120px;
  min-width: 0;
  margin: 0 1.5rem;
}

.gallery-intro {
  padding: 4rem 0 2.25rem;
  text-align: center;
}

.gallery-intro h1 {
  font-size: clamp(2.25rem, 10vw, 3.5rem);
}

.gallery-intro > p:last-child {
  max-width: 32rem;
  margin: 1rem auto 0;
  color: var(--muted);
}

.gallery-content {
  padding-bottom: 5rem;
}

.gallery-filters {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.25rem 0 1rem;
  scrollbar-width: none;
}

.gallery-filters::-webkit-scrollbar {
  display: none;
}

.gallery-filters button {
  flex: 0 0 auto;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--outline);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--primary);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.gallery-filters button.is-active,
.gallery-filters button:hover,
.gallery-filters button:focus-visible {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.gallery-status {
  margin: 0.5rem 0 1.25rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.gallery-status.is-error {
  padding: 1rem;
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  color: var(--primary);
  text-align: center;
}

.gallery-grid {
  display: grid;
  width: 100%;
  min-height: 22rem;
  min-width: 0;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.gallery-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 194, 191, 0.55);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.gallery-image-button {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--surface-mid);
  cursor: zoom-in;
}

.gallery-image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-image-button:hover img,
.gallery-image-button:focus-visible img {
  transform: scale(1.035);
}

.gallery-image-button:disabled {
  cursor: default;
}

.gallery-image-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
  gap: 0.25rem;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 248, 246, 0.25), rgba(255, 218, 210, 0.82)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(105, 58, 53, 0.05) 14px 16px);
  color: var(--primary);
  text-align: center;
}

.gallery-image-fallback span {
  font-family: "Playfair Display", serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.gallery-image-fallback strong {
  font-size: 0.82rem;
}

.gallery-card-body {
  min-width: 0;
  padding: 0.9rem;
}

.gallery-card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  color: var(--muted);
  font-size: 0.68rem;
}

.gallery-category {
  color: var(--primary-soft);
  font-weight: 800;
}

.gallery-card h2 {
  font-family: "Pretendard Variable", Pretendard, "Plus Jakarta Sans", "Noto Sans KR", system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.45;
}

.gallery-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  padding: 1.25rem;
  background: rgba(46, 21, 14, 0.78);
  backdrop-filter: blur(12px);
}

.gallery-modal.is-open {
  display: grid;
}

.gallery-modal-dialog {
  position: relative;
  width: min(100%, 48rem);
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-strong);
}

.gallery-modal-dialog img {
  width: 100%;
  max-height: 76vh;
  aspect-ratio: 1;
  border-radius: calc(var(--radius-lg) - 0.4rem);
  object-fit: contain;
  background: var(--surface-mid);
}

.gallery-modal-dialog p {
  margin: 0.75rem 3rem 0.15rem 0.25rem;
  color: var(--primary);
  font-weight: 800;
}

.gallery-modal-close {
  position: absolute;
  z-index: 1;
  top: 1.15rem;
  right: 1.15rem;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  box-shadow: var(--shadow);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

/* Care service page */
.care-hero,
.care-section {
  width: auto;
  max-width: 1120px;
  min-width: 0;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

/*
  Care hero layout
  - PC keeps the original banner ratio with copy over the image.
  - Mobile separates image and copy to avoid over-cropping.
 */
.care-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(214, 194, 191, 0.5);
  border-radius: var(--radius-xl);
  background: #fff5f1;
  box-shadow: var(--shadow-strong);
}

.care-hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f9eee9;
}

.care-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 248, 246, 0.02) 45%,
    rgba(255, 248, 246, 0.18) 100%
  );
}

.care-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.care-hero-copy {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 2rem 1.35rem 2.25rem;
  border: 0;
  border-radius: 0;
  background: rgba(255, 250, 248, 0.96);
  box-shadow: none;
  text-align: left;
  backdrop-filter: none;
}

.care-hero-copy h1 {
  font-family: "Pretendard Variable", Pretendard, "Plus Jakarta Sans", "Noto Sans KR", system-ui, sans-serif;
  font-weight: 800;
}

.care-hero-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.care-action-row {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.care-action-row .button {
  width: 100%;
}

.care-section {
  padding: 4.5rem 0;
}

.care-section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.care-section-heading > p:last-child {
  color: var(--muted);
}

.care-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
}

.care-service-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 194, 191, 0.55);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.care-card-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface-mid);
}

.care-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.care-card-media img[hidden] {
  display: none;
}

.care-image-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.25rem;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 248, 246, 0.3), rgba(255, 218, 210, 0.84)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(105, 58, 53, 0.05) 14px 16px);
  color: var(--primary);
  text-align: center;
}

.care-image-fallback[aria-hidden="true"] {
  display: none;
}

.care-image-fallback span {
  font-family: "Playfair Display", serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.care-image-fallback strong {
  font-size: 0.8rem;
}

.care-card-copy {
  display: grid;
  flex: 1;
  min-width: 0;
  align-content: start;
  padding: 1rem;
}

.care-card-copy h3 {
  font-size: 1rem;
}

.care-card-copy p {
  margin: 0.6rem 0 1rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.care-card-copy a {
  align-self: end;
  margin-top: auto;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
}

.care-card-copy a::after {
  content: " →";
}

.care-recommend-section {
  max-width: none;
  margin: 0;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  background: rgba(255, 218, 210, 0.32);
}

.care-recommend-section > * {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.care-check-grid {
  display: grid;
  gap: 0.8rem;
}

.care-check-grid article {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(214, 194, 191, 0.5);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.care-check-grid span {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-high);
  color: var(--primary);
  font-weight: 900;
}

.care-check-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.care-process-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.care-process-list li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.care-process-list > li > span {
  color: var(--primary-soft);
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.care-process-list p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.care-cases-section {
  border-top: 1px solid rgba(214, 194, 191, 0.45);
}

.care-case-grid {
  display: grid;
  gap: 1.25rem;
}

.care-case-card {
  overflow: hidden;
  border: 1px solid rgba(214, 194, 191, 0.55);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.care-before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.care-before-after figure {
  min-width: 0;
  margin: 0;
}

.care-case-placeholder {
  display: grid;
  aspect-ratio: 1;
  place-content: center;
  gap: 0.2rem;
  background:
    linear-gradient(135deg, rgba(255, 248, 246, 0.4), rgba(255, 218, 210, 0.68)),
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(105, 58, 53, 0.05) 16px 18px);
  color: var(--primary);
  text-align: center;
}

.care-case-placeholder span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.care-case-placeholder strong {
  font-size: 0.78rem;
}

.care-before-after figcaption {
  padding: 0.55rem;
  background: var(--surface-low);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
}

.care-case-copy {
  padding: 1.25rem;
}

.care-case-copy > span {
  color: var(--primary-soft);
  font-size: 0.75rem;
  font-weight: 800;
}

.care-case-copy h3 {
  margin-top: 0.35rem;
}

.care-case-copy p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.care-notice {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(214, 194, 191, 0.5);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.care-notice h2 {
  font-size: 1.65rem;
}

.care-notice ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.care-contact-section {
  max-width: 50rem;
  text-align: center;
}

.care-contact-section h2 {
  font-size: clamp(1.7rem, 7vw, 2.4rem);
}

.care-contact-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
}


@media (min-width: 480px) {
  .care-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 640px) {
  .button-row,
  .booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    max-width: 34rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .gallery-card-body {
    padding: 1.1rem;
  }

  .gallery-card-meta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .care-action-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .care-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .care-check-grid,
  .care-process-list,
  .care-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .care-check-grid article:last-child {
    grid-column: span 2;
  }

  .care-notice {
    grid-template-columns: 0.65fr 1.35fr;
    align-items: start;
    padding: 2rem;
  }
}

@media (min-width: 840px) {
  .top-nav {
    left: 50%;
    right: auto;
    width: min(calc(100% - 48px), 1120px);
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 800;
  }

  .nav-links a:last-child {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: var(--primary);
    color: white;
  }

  .hero {
    min-height: 92vh;
    align-items: center;
    width: calc(100% - 48px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-card {
    margin-top: 0;
    padding: 3rem;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .intro-section,
  .artist-section,
  .location-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

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

  .manager-card {
    grid-template-columns: 1fr 0.8fr;
    align-items: end;
  }

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

  .section,
  .service-section,
  .price-section,
  .location-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .section {
    width: calc(100% - 48px);
    margin-left: auto;
    margin-right: auto;
  }

  .bottom-nav {
    display: none;
  }

  .site-footer {
    padding: 1.5rem 1.5rem 1.65rem;
  }

  .gallery-intro,
  .gallery-content {
    width: calc(100% - 48px);
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-intro {
    padding-top: 5rem;
  }

  .gallery-filters {
    justify-content: center;
  }

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

  .care-hero,
  .care-section {
    width: calc(100% - 48px);
    margin-right: auto;
    margin-left: auto;
  }

  .care-hero {
    display: block;
    min-height: 0;
    aspect-ratio: 8 / 3;
  }

  .care-hero-media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
  }

  .care-hero-media::after {
    background: linear-gradient(
      90deg,
      rgba(255, 248, 246, 0.98) 0%,
      rgba(255, 248, 246, 0.93) 30%,
      rgba(255, 248, 246, 0.42) 54%,
      rgba(255, 248, 246, 0.02) 76%
    );
  }

  .care-hero-media img {
    object-position: center;
  }

  .care-hero-copy {
    display: flex;
    width: 52%;
    height: 100%;
    min-height: 0;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.25rem, 4vw, 4rem);
    background: transparent;
  }

  .care-hero-copy h1 {
    font-size: clamp(2.8rem, 4.2vw, 4.25rem);
  }

  .care-hero-copy > p:not(.eyebrow) {
    max-width: 30rem;
  }

  .care-action-row {
    grid-template-columns: repeat(3, max-content);
  }

  .care-action-row .button {
    width: auto;
    min-width: 8.4rem;
  }

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

  .care-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .care-recommend-section {
    width: 100%;
    max-width: none;
  }

  .care-check-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .care-check-grid article {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .care-check-grid article:last-child {
    grid-column: auto;
  }

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

  .care-process-list li {
    grid-template-columns: 1fr;
  }

  .care-recommend-section {
    width: 100%;
    max-width: none;
  }

  .care-check-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .care-check-grid article {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .care-check-grid article:last-child {
    grid-column: auto;
  }

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

  .care-process-list li {
    grid-template-columns: 1fr;
  }

  .design-section {
    padding: 3rem;
  }

  .design-feature {
    grid-template-columns: minmax(0, 0.86fr) minmax(24rem, 1.14fr);
    align-items: center;
    gap: 2.5rem;
  }

  .design-keywords {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
  }

  .design-keywords h3 {
    white-space: nowrap;
  }

  .design-chip-row {
    margin-top: 0;
  }

  .place-card {
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    padding: 1.6rem 1.8rem;
  }
}

/* About page */
.about-page {
  background: #fff7f4;
}

.about-hero {
  position: relative;
  min-height: 37rem;
  display: grid;
  align-items: end;
  width: auto;
  max-width: 1120px;
  margin: 0 1.5rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #ead7c9;
}

.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 248, 246, 0.04) 0%, rgba(255, 248, 246, 0.42) 45%, #fff7f4 86%);
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  width: calc(100% - 3rem);
  max-width: 35rem;
  margin: 0 auto;
  padding: 0 0 3.2rem;
  min-width: 0;
}

.about-hero-copy h1 {
  max-width: 18rem;
  color: var(--primary);
  font-family: "Pretendard Variable", Pretendard, "Plus Jakarta Sans", "Noto Sans KR", system-ui, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.14;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 19.5rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.about-page h1,
.about-page h2,
.about-page h3 {
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.about-page p,
.about-page blockquote {
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.about-section {
  width: auto;
  max-width: 44rem;
  margin: 0 1.5rem;
  padding: 3.75rem 0;
  min-width: 0;
}

.about-section-title h2,
.about-location h2 {
  color: var(--primary);
  font-family: "Pretendard Variable", Pretendard, "Plus Jakarta Sans", "Noto Sans KR", system-ui, sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
}

.about-section-title::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2px;
  margin-top: 1.2rem;
  background: #e5b5b1;
}

.philosophy-list {
  display: grid;
  gap: 1.6rem;
  margin-top: 2rem;
}

.philosophy-item {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0.85rem;
}

.philosophy-item > div,
.artist-profile-copy,
.premium-card,
.about-info-grid > div {
  min-width: 0;
}

.philosophy-icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #f9d8d0;
  color: var(--primary);
  font-weight: 900;
}

.philosophy-item h3 {
  color: var(--primary);
  font-size: 1.2rem;
}

.philosophy-item p,
.artist-profile-copy p,
.premium-card p,
.about-info-grid p,
.about-footer p {
  color: var(--muted);
}

.philosophy-item p {
  max-width: 15.6rem;
}

.artist-profile {
  padding-top: 1rem;
}

.artist-photo,
.space-section img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
}

.artist-photo {
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
  object-position: center top;
}

.artist-profile-copy {
  margin-top: 2rem;
}

.artist-profile-copy h2 {
  color: var(--primary);
  font-family: "Pretendard Variable", Pretendard, "Plus Jakarta Sans", "Noto Sans KR", system-ui, sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
}

.credential {
  margin-top: 1.4rem;
  font-weight: 800;
}

.artist-profile blockquote {
  margin: 2rem 0 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid rgba(214, 194, 191, 0.65);
  color: var(--primary);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.85;
}

.space-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.space-section img {
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
}

.premium-card {
  padding: 2rem;
  border: 1px solid rgba(214, 194, 191, 0.45);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.premium-card h2 {
  color: var(--primary);
  font-family: "Pretendard Variable", Pretendard, "Plus Jakarta Sans", "Noto Sans KR", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.about-location {
  border-top: 1px solid rgba(214, 194, 191, 0.45);
}

.about-info-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-info-grid span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--primary-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.about-info-grid p {
  margin: 0;
}

.about-map {
  display: block;
  margin-top: 2.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #f6d9ce;
  box-shadow: var(--shadow);
}

.about-map img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
}

.about-footer {
  display: grid;
  gap: 1rem;
  padding: 3.5rem 1.5rem;
  background: #fff0eb;
}

.about-footer strong {
  color: var(--primary);
  font-family: "Pretendard Variable", Pretendard, "Plus Jakarta Sans", "Noto Sans KR", system-ui, sans-serif;
  font-size: 1.35rem;
}

.about-footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1.2rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (min-width: 720px) {
  .about-section {
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero-copy h1 {
    max-width: 32rem;
    font-size: 3rem;
  }

  .about-hero-copy p:not(.eyebrow),
  .philosophy-item p {
    max-width: none;
  }

  .about-hero {
    width: calc(100% - 48px);
    margin-left: auto;
    margin-right: auto;
  }

  .artist-profile {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 58rem;
  }

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

  .about-footer {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }
}


/* =========================================================
   HOME: 상단 메뉴만 고정
   - home-site-header에는 nav만 들어 있음
   - hero 이미지는 header 밖에 있으므로 정상적으로 스크롤됨
   ========================================================= */
.home-site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  min-height: 0;
  padding: 1rem 0;
  background: var(--surface);
}

.home-site-header .top-nav {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: calc(100% - 3rem);
  max-width: 1120px;
  margin: 0 auto;
  transform: none;
}

/* 기존 hero의 메뉴용 상단 공간을 제거 */
.home-hero {
  min-height: calc(100svh - var(--top-nav-clearance));
  padding-top: 0;
}

.home-hero .hero-media {
  inset: 0;
}

@media (max-width: 839px) {
  .home-site-header .top-nav,
  .home-hero,
  .intro-section {
    width: calc(100% - (var(--mobile-page-gutter) * 2));
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero .hero-card {
    box-sizing: border-box;
    margin-top: 42svh;
    padding: 1.75rem 1.25rem;
  }

  .home-hero .hero-card h1 {
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }

  .home-hero .hero-card h1 span {
    display: inline;
  }

  .home-hero .hero-card h1 span + span::before {
    content: " ";
  }

  .home-hero .hero-card p:not(.eyebrow),
  .intro-section .section-copy p:not(.eyebrow) {
    font-size: 15.5px;
    line-height: 1.65;
    letter-spacing: -0.01em;
  }

  .price-section {
    padding-right: var(--mobile-page-gutter);
    padding-left: var(--mobile-page-gutter);
  }

  .intro-section {
    padding-top: 48px;
    padding-bottom: 52px;
    gap: 1.5rem;
  }

  .intro-section h2 {
    font-size: 26px;
    line-height: 1.3;
    letter-spacing: -0.02em;
  }
}

/* Compact business-style footer */
.site-footer {
  display: block;
  padding: 1.35rem 1.5rem calc(5.6rem + env(safe-area-inset-bottom));
  border-top: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 235, 232, 0.1), transparent 18rem),
    linear-gradient(135deg, #887773 0%, #6f625f 100%);
  color: rgba(255, 250, 248, 0.8);
  text-align: left;
}

.footer-inner {
  display: flex;
  width: 100%;
  max-width: 1120px;
  min-height: 7.5rem;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-content {
  min-width: 0;
}

.footer-info {
  display: grid;
  gap: 0.18rem;
}

.site-footer .footer-info p,
.site-footer .footer-copyright {
  margin: 0;
  color: rgba(255, 250, 248, 0.74);
  font-size: 0.72rem;
  line-height: 1.5;
}

.footer-info span {
  display: inline-block;
  min-width: 4.2rem;
  color: #f7efec;
  font-weight: 800;
}

.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.3rem 1rem;
  margin-top: 0.55rem;
  color: #f7efec;
  font-size: 0.74rem;
  font-weight: 800;
}

.site-footer .footer-links a {
  position: relative;
}

.site-footer .footer-links a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.55rem;
  width: 1px;
  height: 0.7rem;
  background: rgba(247, 239, 236, 0.28);
  transform: translateY(-50%);
}

.site-footer .footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.025em;
}

.footer-brand {
  display: grid;
  width: fit-content;
  gap: 0;
  margin-top: 0.65rem;
}

.site-footer .footer-brand strong {
  color: #f7efec;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.footer-brand span {
  color: rgba(247, 239, 236, 0.58);
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.footer-seal {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 5.7rem;
  height: 5.7rem;
  place-items: center;
  border: 1px solid rgba(247, 239, 236, 0.42);
  border-radius: 50%;
  color: rgba(247, 239, 236, 0.64);
}

.footer-seal::before {
  content: "";
  position: absolute;
  inset: 0.42rem;
  border: 1px solid rgba(247, 239, 236, 0.16);
  border-radius: 50%;
}

.footer-seal strong {
  position: relative;
  z-index: 1;
  color: #f7efec;
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
}

.footer-seal-top,
.footer-seal-bottom {
  position: absolute;
  left: 50%;
  z-index: 1;
  width: max-content;
  transform: translateX(-50%);
  font-size: 0.47rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.footer-seal-top {
  top: 0.7rem;
}

.footer-seal-bottom {
  bottom: 0.72rem;
}

@media (min-width: 840px) {
  .site-footer {
    padding: 1.2rem 1.5rem 1.3rem;
  }
}

@media (max-width: 639px) {
  .footer-inner {
    min-height: 0;
    align-items: flex-end;
    gap: 1rem;
  }

  .site-footer .footer-info p,
  .site-footer .footer-copyright {
    font-size: 0.66rem;
  }

  .footer-info span {
    min-width: 3.8rem;
  }

  .footer-seal {
    width: 4.4rem;
    height: 4.4rem;
  }

  .footer-seal strong {
    font-size: 1.3rem;
  }

  .footer-seal-top,
  .footer-seal-bottom {
    font-size: 0.38rem;
  }
}

@media (max-width: 520px) {
  .price-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
}

@media (max-width: 420px) {
  .footer-seal {
    display: none;
  }
}
