@import url("https://cdn.jsdelivr.net/npm/pretendard@1.3.9/dist/web/static/pretendard.css");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;1,400;1,500&display=swap");

:root {
  --ink: #2f2926;
  --muted: #7d7370;
  --line: #eee8e5;
  --paper: #fffdfb;
  --soft: #f7f2ef;
  --rose: #c8959b;
  --rose-deep: #a86d76;
  --green: #11bf62;
  --footer: #2f2f2f;
  --shadow: 0 18px 45px rgba(64, 48, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Times New Roman", "Noto Serif KR", "Apple SD Gothic Neo", serif;
  line-height: 1.8;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(200, 149, 155, 0.09), transparent 22%),
    radial-gradient(circle at 92% 3%, rgba(210, 184, 170, 0.18), transparent 19%);
}

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

input,
textarea,
button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  grid-template-rows: 44px 34px;
  align-items: center;
  gap: 4px 26px;
  min-height: 112px;
  padding: 18px 24px 12px;
  background: rgba(255, 253, 251, 0.94);
  border-bottom: 1px solid rgba(238, 232, 229, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  grid-column: 1;
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  align-self: center;
  width: min(290px, 100%);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-self: end;
  gap: 22px;
  color: #4f4642;
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.site-nav a {
  padding: 6px 0;
}

.site-nav a:hover,
.site-nav .is-active {
  color: var(--rose-deep);
  border-bottom: 1px solid currentColor;
}

.header-actions {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  align-self: start;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 36px;
  padding: 8px 18px;
  color: #fff;
  border-radius: 999px;
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.pill-line {
  background: var(--green);
}

.pill-form,
.primary-button,
.contact-form button {
  background: linear-gradient(100deg, #c47f89, #efd8d8 52%, #a96874);
}

.badge-link,
.social-link,
.naver-link,
.tiktok-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 2px;
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.badge-link {
  color: #33526d;
  background: #f7fbff;
  border: 1px solid #bfd1df;
}

.social-link {
  color: #9a4a55;
  background: #fff;
  border: 1px solid #e8cbd0;
}

.naver-link {
  color: #ffffff;
  background: #03c75a;
}

.tiktok-link {
  color: #fff;
  background: #111;
}

.tiktok-link::after {
  content: "↗";
  margin-left: 4px;
  font-size: 11px;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::after,
.soft-title::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.28));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 253, 251, 0.94), rgba(255, 253, 251, 0.42)),
    linear-gradient(135deg, #f6ece8, #eee2dd 44%, #fdf9f6);
}

.hero-copy {
  width: min(720px, calc(100% - 48px));
  margin-right: auto;
  margin-left: clamp(24px, 9vw, 140px);
  padding: 72px 0;
}

.eyebrow,
.section-label {
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.12em;
}

h3 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.hero-copy p:not(.eyebrow),
.section-narrow p,
.split-copy p,
.profile-card p,
.flow-list p,
.price p,
.faq p,
.contact p {
  color: var(--muted);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 15px;
}

.primary-button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  margin-top: 20px;
  padding: 13px 28px;
  color: #fff;
  border: 0;
  box-shadow: var(--shadow);
  letter-spacing: 0.1em;
  cursor: pointer;
}

.section,
.section-narrow {
  padding: 105px 24px;
}

.page-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 64px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(226, 196, 190, 0.42), transparent 32%),
    linear-gradient(90deg, #fffaf7, #f4ebe7 45%, #fffaf7);
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(27px, 4vw, 46px);
}

.page-lead {
  width: min(760px, 100%);
  margin: 0 auto 64px;
  text-align: center;
}

.page-lead p {
  color: var(--muted);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 15px;
}

.section-narrow {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.home-links {
  background: var(--soft);
  text-align: center;
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  width: min(980px, 100%);
  margin: 42px auto 0;
}

.page-card-grid a {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  letter-spacing: 0.12em;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0 110px;
}

.split-image,
.profile-photo,
.blank-image,
.image-slot {
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px 16px),
    #eee6e2;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.blank-image {
  min-height: 300px;
}

.service-list {
  display: grid;
  gap: 72px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.service-list article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.service-price {
  background: #fff;
  text-align: center;
}

.service-price-table {
  width: min(820px, 100%);
  margin-top: 46px;
  box-shadow: none;
  border: 1px solid var(--line);
}

.service-note-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 46px;
  width: min(820px, 100%);
  margin: 48px auto 0;
  padding: 44px 52px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: left;
}

.service-note-box article:nth-child(3) {
  grid-column: 1 / -1;
}

.service-note-box h3 {
  margin-bottom: 10px;
}

.service-note-box p {
  color: var(--muted);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 14px;
}

.home-about {
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(980px, 100%);
  margin: 0 auto 36px;
}

.feature-grid article {
  padding: 34px 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: left;
}

.feature-grid span {
  color: var(--rose);
  font-size: 24px;
  letter-spacing: 0.14em;
}

.feature-grid p,
.blog-card p {
  color: var(--muted);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 14px;
}

.blog-preview {
  background: var(--soft);
  text-align: center;
}

.blog-archive {
  background: var(--soft);
}

.blog-archive-box {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 50px;
  border-radius: 5px;
  background: #fff;
  box-shadow: var(--shadow);
}

.blog-archive-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 30px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.blog-archive-row:first-child {
  padding-top: 0;
}

.blog-archive-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.blog-archive-row:hover {
  opacity: 0.72;
}

.blog-archive-copy h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.blog-archive-copy time {
  display: block;
  margin-bottom: 12px;
  color: var(--rose-deep);
  font-family: Poppins, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.blog-archive-copy p {
  margin: 0;
  color: var(--muted);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.blog-thumb,
.blog-detail-cover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.2)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px 16px),
    #eee6e2;
  background-position: center;
  background-size: cover;
}

.blog-thumb {
  min-height: 180px;
  border-radius: 5px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: min(1080px, 100%);
  margin: 0 auto 36px;
  text-align: left;
}

.blog-card {
  display: block;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.blog-card .image-slot {
  min-height: 180px;
  margin-bottom: 20px;
  box-shadow: none;
}

.blog-card time {
  color: var(--rose-deep);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.blog-card h3 {
  margin: 8px 0 10px;
}

.blog-card:hover,
.home-blog-row:hover {
  opacity: 0.72;
}

.blog-detail {
  width: min(580px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 96px;
}

.blog-detail-cover {
  width: 100%;
  aspect-ratio: 2 / 1;
  min-height: 0;
  margin-bottom: 22px;
  border-radius: 0;
  box-shadow: none;
}

.blog-detail h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.blog-detail-meta {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 48px;
}

.blog-detail-meta time {
  color: var(--muted);
  font-family: Poppins, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 10px;
  border-radius: 2px;
  background: linear-gradient(100deg, #c47f89, #efd8d8 52%, #a96874);
  color: #fff;
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 11px;
}

.blog-detail-body {
  padding: 0 0 20px;
  color: var(--ink);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

.blog-detail-body h2 {
  margin: 0 0 14px;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.blog-detail-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.blog-back-link {
  display: flex;
  width: fit-content;
  margin: 80px auto 0;
  padding: 0 0 4px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 12px;
}

.blog-back-link:hover {
  opacity: 0.65;
}

.blog-detail-page {
  background: #fff;
}

.blog-detail-page main {
  background: #fff;
}

.home-hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #f6eee9;
}

.home-hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 251, 0.9), rgba(255, 253, 251, 0.1) 58%),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px 16px),
    #eaded8;
}

.home-hero-copy {
  position: relative;
  width: min(680px, calc(100% - 48px));
  margin: 0 auto 90px;
  padding-right: min(28vw, 320px);
  text-shadow: 0 1px 20px rgba(255, 255, 255, 0.9);
}

.home-hero-copy h1 {
  font-size: clamp(31px, 5vw, 58px);
}

.home-intro {
  display: grid;
  grid-template-columns: 240px minmax(300px, 520px);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  justify-content: center;
  background: #fff;
}

.home-intro-thumbs {
  display: grid;
  gap: 18px;
}

.home-intro-thumbs .image-slot {
  min-height: 150px;
}

.home-about-panel,
.home-blog-panel {
  background: var(--soft);
  text-align: center;
}

.home-blog-panel {
  padding-top: 86px;
  padding-bottom: 94px;
}

.home-blog-list-box {
  width: min(900px, 100%);
  margin: 42px auto 0;
  padding: 42px 52px;
  background: #fff;
  box-shadow: var(--shadow);
}

.home-blog-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 30px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.home-blog-row:first-child {
  padding-top: 0;
}

.home-blog-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.home-blog-row-copy h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.home-blog-row-copy time {
  display: block;
  margin-bottom: 12px;
  color: var(--rose-deep);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.home-blog-row-copy p {
  color: var(--muted);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 14px;
}

.home-blog-row .image-slot {
  min-height: 180px;
  box-shadow: none;
}

.home-blog-more {
  margin-top: 34px;
}

.about-paper {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 300px;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  width: min(760px, 100%);
  margin: 42px auto 0;
  padding: 42px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

.about-paper p,
.home-intro-copy p:not(.section-label),
.home-row p,
.home-dark-overlay p {
  color: var(--muted);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 14px;
}

.about-paper-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-paper-images .image-slot {
  min-height: 150px;
}

.about-paper-images .tall {
  min-height: 260px;
  grid-row: span 2;
}

.home-service-flow {
  display: grid;
  gap: 72px;
  width: min(940px, 100%);
  margin: 0 auto;
}

.home-row {
  display: grid;
  grid-template-columns: 320px minmax(280px, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.home-row.reverse {
  grid-template-columns: minmax(280px, 1fr) 320px;
}

.home-row.reverse .image-slot {
  order: 2;
}

.home-row.reverse > div:not(.image-slot) {
  order: 1;
}

.home-row .image-slot {
  min-height: 220px;
}

.home-company {
  padding: 100px 24px 70px;
  background:
    linear-gradient(rgba(7, 71, 112, 0.78), rgba(7, 71, 112, 0.78)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    #074770;
  color: #fff;
  text-align: center;
}

.home-company-inner {
  width: min(1000px, 100%);
  margin: 0 auto;
}

.home-company .section-label {
  color: #fff;
}

.home-company h2 {
  color: #fff;
}

.home-company-lead {
  margin-top: 24px;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.08em;
}

.home-company-inner > p:not(.section-label):not(.home-company-lead) {
  width: min(760px, 100%);
  margin: 28px auto 44px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.86);
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 46px;
}

.home-stats article {
  padding: 30px 18px;
  border-radius: 6px;
  background: linear-gradient(100deg, #c47f89, #efd8d8 52%, #a96874);
  box-shadow: var(--shadow);
}

.home-stats span {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 14px;
}

.home-stats strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.home-company small {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.75);
}

.home-dark-cta {
  padding: 48px 10px;
  background: #074770;
  color: #fff;
  text-align: center;
}

.home-dark-overlay {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.home-dark-overlay .section-label,
.home-dark-overlay p {
  color: rgba(255, 255, 255, 0.78);
}

.home-cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.home-cta-cards a {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px 38px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.42)),
    linear-gradient(135deg, #bfbfbf, #f5f5f5 50%, #8d8d8d);
  color: #fff;
  text-align: left;
  box-shadow: var(--shadow);
}

.home-cta-cards strong {
  font-size: 22px;
  letter-spacing: 0.08em;
}

.home-cta-cards span {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.home-gallery {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(820px, 100%);
  margin: 0 auto 38px;
}

.gallery-grid .image-slot {
  min-height: 150px;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(92px, 1fr));
  gap: 12px;
  width: min(560px, 100%);
  margin: 0 auto;
}

.badge-grid span {
  display: grid;
  place-items: center;
  min-height: 74px;
  color: #9b7f42;
  background: #fff8d8;
  border: 1px solid #e3cf82;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.process-detail {
  display: grid;
  gap: 70px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 300px;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.process-step:nth-child(even) {
  grid-template-columns: 300px minmax(260px, 1fr);
}

.process-step:nth-child(even) .process-copy {
  order: 2;
}

.process-step:nth-child(even) .image-slot {
  order: 1;
}

.process-number {
  color: var(--rose);
  font-size: 28px;
  letter-spacing: 0.16em;
}

.flow-page {
  background: #fff;
}

.flow-timeline {
  display: grid;
  gap: 58px;
  width: min(840px, 100%);
  margin: 0 auto;
}

.flow-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.flow-item .image-slot {
  min-height: 180px;
}

.flow-item .process-copy {
  position: relative;
  padding-left: 34px;
}

.flow-item .process-copy::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 1px;
  height: calc(100% + 28px);
  background: var(--line);
}

.flow-item .process-copy::after {
  content: "";
  position: absolute;
  top: 12px;
  left: -5px;
  width: 11px;
  height: 11px;
  background: #fff;
  border: 1px solid var(--rose);
  border-radius: 999px;
}

.flow-item:last-child .process-copy::before {
  height: 100%;
}

.flow-item p:not(.process-number) {
  color: var(--muted);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 14px;
}

.image-couple {
  background-image: none;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--rose-deep);
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  letter-spacing: 0.16em;
}

.about,
.price {
  background: var(--soft);
}

.profile-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 52px;
  background: #fff;
  box-shadow: var(--shadow);
}

.profile-photo {
  min-height: 340px;
  background-image: none;
}

.small-heading {
  margin-bottom: 6px;
  color: var(--rose-deep);
  letter-spacing: 0.12em;
}

.flow {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.flow-list {
  display: grid;
  gap: 22px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.flow-list li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  align-items: start;
  padding: 26px 30px;
  background: #fff;
  border: 1px solid var(--line);
}

.flow-list span {
  color: var(--rose);
  font-size: 30px;
  line-height: 1;
}

.company-box {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.company-box dl {
  margin: 42px 0 0;
  padding: 44px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

.company-box div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.company-box div:last-child {
  border-bottom: 0;
}

.company-box dt {
  color: var(--rose-deep);
  letter-spacing: 0.12em;
}

.company-box dd {
  margin: 0;
  color: var(--muted);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

.about-message {
  background: #fff;
  text-align: center;
}

.about-message-inner {
  display: grid;
  grid-template-columns: 260px minmax(320px, 540px);
  gap: clamp(52px, 8vw, 100px);
  align-items: center;
  justify-content: center;
  width: min(900px, 100%);
  margin: 42px auto 68px;
  text-align: left;
}

.about-message-copy p {
  color: var(--muted);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 14px;
}

.about-visual-message {
  position: relative;
  width: min(760px, 100%);
  min-height: 260px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.about-visual-message .image-slot {
  position: absolute;
  inset: 0;
  min-height: auto;
  background:
    linear-gradient(rgba(42, 42, 42, 0.42), rgba(42, 42, 42, 0.42)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 16px),
    #b8ada8;
  box-shadow: none;
}

.visual-copy {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 48px));
}

.visual-copy p {
  color: rgba(255, 255, 255, 0.88);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 14px;
}

.visual-copy h2 {
  color: #fff;
  font-size: clamp(22px, 3vw, 32px);
}

.company-dark {
  background: var(--footer);
  color: #fff;
  text-align: center;
}

.company-dark .section-label {
  color: rgba(255, 255, 255, 0.72);
}

.company-dark dl {
  width: min(760px, 100%);
  margin: 46px auto 0;
  padding: 44px 56px;
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.company-dark div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.company-dark div:last-child {
  border-bottom: 0;
}

.company-dark dt {
  color: #4b413e;
  letter-spacing: 0.08em;
}

.company-dark dd {
  margin: 0;
  color: var(--muted);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

.contact-band {
  padding: 92px 24px;
  background: var(--soft);
  text-align: center;
}

.contact-band .contact-actions {
  margin-top: 28px;
}

.price {
  text-align: center;
}

.price-table,
.note-grid {
  width: min(860px, 100%);
  margin: 42px auto 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.price-table {
  padding: 18px 42px;
}

.price-table div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table div:last-child {
  border-bottom: 0;
}

.price-table strong {
  font-size: 18px;
  font-weight: 400;
}

.price-table small {
  color: var(--muted);
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.note-grid article {
  padding: 30px;
  background: #fff;
  text-align: left;
}

.faq {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.faq details {
  margin-top: 18px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.faq summary {
  cursor: pointer;
  letter-spacing: 0.08em;
}

.faq summary::marker {
  color: var(--rose);
}

.faq p {
  margin: 16px 0 0;
}

.faq-page {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 46px;
  width: min(820px, 100%);
  margin: 0 auto;
}

.faq-item {
  position: relative;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.faq-item h2 {
  position: relative;
  margin-bottom: 14px;
  padding-left: 44px;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.faq-item h2::before {
  content: "Q";
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: #fff;
  background: linear-gradient(135deg, #d5a2a8, #f1dddd);
  font-family: Georgia, serif;
  font-size: 13px;
}

.faq-item p {
  position: relative;
  margin: 0;
  padding-left: 44px;
  color: var(--muted);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 14px;
}

.faq-item p::before {
  content: "A";
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: var(--rose-deep);
  background: #fff;
  border: 1px solid var(--line);
  font-family: Georgia, serif;
  font-size: 13px;
}

.contact {
  padding: 95px 24px;
  background: var(--soft);
  text-align: center;
}

.contact-form-section {
  background: #fff;
  text-align: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.phone-link {
  padding-right: 32px;
  border-right: 1px solid #d8cfca;
  font-size: 22px;
  letter-spacing: 0.08em;
}

.muted {
  margin-top: 0;
}

.contact-form {
  display: grid;
  gap: 20px;
  width: min(640px, 100%);
  margin: 0 auto;
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 4px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--rose);
}

.contact-form button {
  justify-self: center;
  width: min(380px, 100%);
}

.form-status {
  min-height: 28px;
  margin: 0;
  text-align: center;
}

.required {
  color: var(--rose-deep);
}

.date-grid {
  display: grid;
  gap: 14px;
}

.date-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.date-row span,
.date-row-label {
  color: var(--rose-deep);
  font-weight: 600;
}

.privacy-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.privacy-row input {
  width: auto;
  margin-top: 9px;
}

.map {
  min-height: 260px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%) 0 0 / 28px 28px,
    linear-gradient(-45deg, rgba(255, 255, 255, 0.35) 25%, transparent 25%) 0 0 / 28px 28px,
    #d8d8d8;
  filter: grayscale(1);
}

.map-card {
  width: min(270px, calc(100% - 40px));
  padding: 18px;
  color: #8b8b8b;
  background: rgba(255, 255, 255, 0.85);
  font-family: Arial, sans-serif;
}

.site-footer {
  padding: 52px 24px 36px;
  color: #fff;
  background: var(--footer);
  text-align: center;
}

.footer-logo {
  margin-bottom: 16px;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.footer-links,
.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.footer-buttons a {
  min-width: 140px;
  padding: 10px 20px;
  background: #fff;
  color: #333;
}

.footer-buttons .line {
  background: var(--green);
  color: #fff;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.46);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .hero {
    min-height: 620px;
  }

  .split-section,
  .profile-card,
  .service-list article,
  .process-step,
  .process-step:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .profile-card {
    padding: 30px;
  }

  .service-list article:nth-child(even) .blank-image {
    order: -1;
  }

  .process-step:nth-child(even) .process-copy,
  .process-step:nth-child(even) .image-slot {
    order: initial;
  }

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

  .feature-grid,
  .blog-grid,
  .service-note-box {
    grid-template-columns: 1fr;
  }

  .home-intro,
  .about-paper,
  .about-message-inner,
  .flow-item,
  .blog-archive-row,
  .home-blog-row,
  .home-row,
  .home-row.reverse {
    grid-template-columns: 1fr;
  }

  .home-row.reverse .image-slot,
  .home-row.reverse > div:not(.image-slot) {
    order: initial;
  }

  .home-hero-copy {
    padding-right: 0;
  }

  .home-cta-cards,
  .home-stats,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

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

  .site-nav {
    gap: 10px 14px;
    font-size: 9.6px;
  }

  .header-actions {
    width: 100%;
  }

  .pill {
    flex: 1 1 120px;
  }

  .hero-copy {
    width: calc(100% - 36px);
    margin-left: 18px;
  }

  .blog-detail {
    width: calc(100% - 36px);
    padding: 34px 0 72px;
  }

  .blog-archive-box {
    padding: 24px;
  }

  .blog-thumb {
    min-height: 160px;
  }

  .blog-detail-cover {
    aspect-ratio: 2 / 1;
    margin-bottom: 22px;
  }

  .blog-detail-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 38px;
  }

  .section,
  .section-narrow,
  .contact {
    padding: 72px 18px;
  }

  .split-section {
    width: calc(100% - 36px);
    padding-bottom: 72px;
  }

  .price-table {
    padding: 8px 20px;
  }

  .price-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .flow-list li {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
  }

  .page-card-grid {
    grid-template-columns: 1fr;
  }

  .company-box dl {
    padding: 24px;
  }

  .company-box div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .company-dark dl {
    padding: 28px;
  }

  .company-dark div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .phone-link {
    width: 100%;
    padding-right: 0;
    border-right: 0;
  }

  .date-row {
    grid-template-columns: 1fr;
  }

  .service-note-box {
    padding: 28px;
  }

  .home-blog-list-box {
    padding: 28px;
  }

  .service-note-box article:nth-child(3) {
    grid-column: auto;
  }

  .home-hero {
    min-height: 560px;
  }

  .home-hero-copy {
    margin-bottom: 58px;
  }

  .about-paper {
    padding: 26px;
  }

  .about-paper-images,
  .badge-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* STUDIO reference sync overrides */
:root {
  --ink: #333333;
  --paper: #ffffff;
  --soft: #f7f5f4;
  --rose: #b27b7f;
  --rose-deep: #9b646b;
  --gold-gradient: linear-gradient(135deg, #b27b7f, #e6c1c5 33%, #f3e5e2 52%, #b27b7f);
  --navy: #074770;
}

body {
  background:
    radial-gradient(circle at top left, rgba(178, 123, 127, 0.12), transparent 28%),
    linear-gradient(135deg, #fffaf8, #f7f5f4 48%, #ffffff);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Noto Sans JP", sans-serif;
}

h1,
h2,
h3,
.footer-logo,
.home-hero-copy p:not(.section-label) {
  font-family: "Noto Serif KR", "Shippori Mincho", "Times New Roman", serif;
}

.site-header {
  position: sticky;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.72));
  box-shadow: 0 8px 30px rgba(51, 51, 51, 0.08);
}

.brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.brand-subtitle {
  padding-left: 24px;
  color: var(--rose-deep);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.pill-form,
.primary-button,
.contact-form button,
.campaign-note,
.campaign-banner {
  background: var(--gold-gradient);
}

.line-button,
.pill-line {
  background: #06c755;
}

.badge-link {
  color: var(--navy);
  border-color: rgba(7, 71, 112, 0.2);
}

.home-hero {
  min-height: 750px;
  background: #111;
}

.home-hero-image {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.04)),
    url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-8736x4896_v-frms_webp_b58c6477-93c5-4aa3-bf29-981460f1582f_regular.webp");
  background-position: center;
}

.home-hero-copy {
  color: #ffffff;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
}

.home-hero-copy .eyebrow {
  color: #ffffff;
}

.home-hero-copy h1 {
  max-width: 900px;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.55;
}

.image-slot,
.blog-thumb,
.blog-detail-cover,
.profile-photo {
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #e8e1de;
}

.image-couple-1 {
  background-image: url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-5682x2640_v-frms_webp_3450219f-bd1f-422f-8aa0-33fb2e964705_small.webp");
}

.image-couple-2,
.profile-photo {
  background-image: url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-1000x560_v-fs_webp_68f42a01-02ab-4735-82c0-bcd46b2ed83f.webp");
}

.image-network {
  background-image: url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-2816x1536_v-frms_webp_53a4d346-30d1-480f-ac57-5a57c7087778_middle.webp");
}

.image-support {
  background-image: url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-1000x571_v-fs_webp_3bfce295-8775-48bf-8f12-c1ecb01e66da.webp");
}

.image-experience,
.image-consult {
  background-image: url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-1000x560_v-fs_webp_f1811dd4-052b-4f80-bff2-7e1e7b347611.webp");
}

.blog-thumb-1 {
  background-image: url("https://storage.googleapis.com/studio-cms-assets/projects/JpOLmP4xqQ/s-1920x2400_v-frms_webp_4eb5ebe5-aca5-44a5-976f-000deb730461_small.webp");
}

.blog-thumb-2 {
  background-image: url("https://storage.googleapis.com/studio-cms-assets/projects/JpOLmP4xqQ/s-2400x1603_v-frms_webp_ea756a4c-bf23-472a-9a30-5195a21515c1_small.webp");
}

.blog-thumb-3 {
  background-image: url("https://storage.googleapis.com/studio-cms-assets/projects/JpOLmP4xqQ/s-2400x1600_v-frms_webp_802e5bd4-5907-4c04-a16e-d7ca193baf6a_small.webp");
}

.flow-photo-01 {
  background-image: url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-5333x3000_v-frms_webp_0d7402df-8c22-4262-ac4b-64b3571dbd1f_middle.webp");
}

.flow-photo-02 {
  background-image: url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-5184x3888_v-frms_webp_3ebf0edf-1e6c-47e2-8431-461528b6558b_middle.webp");
}

.flow-photo-03 {
  background-image: url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-5030x3341_v-frms_webp_5e48da4c-dfa6-480a-88cb-032e3f499ea2_middle.webp");
}

.flow-photo-04 {
  background-image: url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-5760x3840_v-frms_webp_05ebfe46-49b3-4247-9dad-950313f5bd98_middle.webp");
}

.flow-photo-05 {
  background-image: url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-4000x2610_v-frms_webp_5f99b410-0ace-4d44-8f1d-d6fe0eff7633_middle.webp");
}

.flow-photo-06 {
  background-image: url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-5472x3648_v-frms_webp_0d32a81c-4685-424e-a644-9c050a318f91_middle.webp");
}

.flow-photo-07 {
  background-image: url("./assets/flow-casual-dating.png");
}

.flow-photo-08 {
  background-image: url("./assets/flow-serious-dating.jpg");
}

.flow-photo-09 {
  background-image: url("./assets/flow-marriage.png");
}

.home-service-flow,
.blog-archive,
.contact-form-section {
  background: var(--soft);
}

.home-row,
.blog-archive-box,
.contact-form,
.service-note-box,
.faq-item {
  box-shadow: 0 18px 45px rgba(51, 51, 51, 0.08);
}

.home-company {
  color: #ffffff;
  background:
    linear-gradient(rgba(7, 71, 112, 0.78), rgba(7, 71, 112, 0.78)),
    url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-1000x560_v-fs_webp_189bd64d-4a9d-47b6-be21-c15d2c811da0.webp") center / cover;
}

.home-company .section-label,
.home-company small {
  color: rgba(255, 255, 255, 0.78);
}

.home-stats article {
  background: var(--gold-gradient);
  color: #ffffff;
}

.home-stats small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.home-dark-cta {
  background:
    linear-gradient(rgba(7, 71, 112, 0.86), rgba(7, 71, 112, 0.86)),
    url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-1000x667_v-fs_webp_9ae5deb1-e1e3-4764-a632-76e9ac2027a2.webp") center / cover;
}

.campaign-banner {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: clamp(48px, 8vw, 86px) 24px;
  color: #ffffff;
  text-align: center;
}

.campaign-banner span {
  font-family: Georgia, serif;
  font-size: clamp(34px, 6vw, 64px);
  letter-spacing: 0.06em;
}

.campaign-banner strong {
  font-size: clamp(24px, 4vw, 42px);
}

.campaign-banner em {
  padding: 12px 32px;
  border: 1px solid currentColor;
  font-style: normal;
}

.campaign-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 34px;
  padding: 18px 24px;
  color: #ffffff;
  border-radius: 8px;
  text-align: center;
}

.contact-band {
  background: #f7f5f4;
}

.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.map {
  min-height: 360px;
  background: #d8d8d8;
  filter: grayscale(1);
}

.map-frame {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.footer-address {
  max-width: 820px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

@media (max-width: 900px) {
  .brand-subtitle {
    padding-left: 0;
  }

  .home-hero {
    min-height: 560px;
  }

  .home-hero-copy h1 {
    font-size: clamp(23.4px, 5.6vw, 36px);
  }
}

/* Korean wedding design polish */
:root {
  --wedding-bg: #fffaf7;
  --wedding-ivory: #fff7f1;
  --wedding-cream: #f7efe8;
  --wedding-pink: #d7a1a7;
  --wedding-rose: #b97882;
  --wedding-brown: #4a3732;
  --wedding-gold: #c8a76d;
  --button-gradient: linear-gradient(135deg, #f5b7bd 0%, #e79ba5 45%, #c9828d 100%);
  --button-gradient-hover: linear-gradient(135deg, #f8c6cb 0%, #edaab3 45%, #d28d98 100%);
  --campaign-gradient: linear-gradient(135deg, #f4b6bd 0%, #e2a276 52%, #c98691 100%);
  --wedding-shadow: 0 24px 70px rgba(78, 52, 46, 0.11);
  --wedding-soft-shadow: 0 14px 38px rgba(78, 52, 46, 0.08);
}

body {
  color: var(--wedding-brown);
  background:
    radial-gradient(circle at 8% 4%, rgba(215, 161, 167, 0.18), transparent 22%),
    radial-gradient(circle at 92% 12%, rgba(200, 167, 109, 0.14), transparent 24%),
    linear-gradient(180deg, #fffdfb 0%, var(--wedding-bg) 48%, #ffffff 100%);
  word-break: keep-all;
}

.section,
.home-service-flow,
.home-blog-panel,
.contact-form-section,
.faq-page,
.blog-archive {
  padding-top: clamp(82px, 9vw, 132px);
  padding-bottom: clamp(82px, 9vw, 132px);
}

.site-header {
  min-height: 88px;
  grid-template-columns: minmax(210px, 300px) 1fr;
  grid-template-rows: auto auto;
  gap: 8px 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(185, 126, 134, 0.13);
  background: rgba(255, 250, 247, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  width: min(250px, 100%);
}

.brand-logo {
  max-height: 46px;
}

.brand-subtitle {
  padding-left: 18px;
  color: rgba(74, 55, 50, 0.62);
  font-size: 12px;
}

.site-nav {
  gap: 18px;
  color: rgba(74, 55, 50, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  border-bottom: 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav .is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a:hover,
.site-nav .is-active {
  color: var(--wedding-rose);
  border-bottom: 0;
}

.header-actions {
  gap: 8px;
}

.pill,
.badge-link,
.social-link {
  min-height: 36px;
  border-radius: 999px;
  font-weight: 700;
}

.pill,
.primary-button,
.contact-form button {
  box-shadow: 0 10px 24px rgba(185, 120, 130, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.pill-form,
.primary-button,
.contact-form button,
.campaign-note {
  background: var(--button-gradient);
}

.campaign-banner {
  background: var(--campaign-gradient);
}

.pill-form:hover,
.primary-button:hover,
.contact-form button:hover,
.campaign-note:hover {
  background: var(--button-gradient-hover);
}

.pill:hover,
.primary-button:hover,
.contact-form button:hover,
.campaign-banner:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(185, 120, 130, 0.22);
}

.badge-link,
.social-link,
.naver-link {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(185, 120, 130, 0.22);
}

.naver-link {
  color: #03a64a;
  border: 1px solid rgba(3, 199, 90, 0.28);
}

.home-hero {
  min-height: min(760px, calc(100svh - 20px));
  isolation: isolate;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(48, 31, 28, 0.64), rgba(48, 31, 28, 0.22) 46%, rgba(255, 255, 255, 0.1)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 42%, rgba(0, 0, 0, 0.2));
}

.home-hero-image {
  transform: scale(1.02);
}

.home-hero-copy {
  z-index: 2;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto clamp(62px, 10vw, 112px);
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background: rgba(31, 19, 17, 0.24);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(7px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.home-hero-copy h1 {
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.home-hero-copy > p:last-child {
  margin: 0;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.9;
}

.eyebrow,
.section-label {
  color: var(--wedding-rose);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}

h1,
h2,
h3 {
  color: var(--wedding-brown);
  letter-spacing: -0.035em;
}

.page-lead h2,
.home-intro-copy h2,
.contact-band h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.42;
}

.home-intro {
  grid-template-columns: minmax(260px, 420px) minmax(320px, 560px);
  background:
    linear-gradient(135deg, rgba(255, 247, 241, 0.86), rgba(255, 255, 255, 0.96)),
    var(--wedding-bg);
}

.home-intro-thumbs {
  position: relative;
  gap: 0;
}

.home-intro-thumbs .image-slot {
  min-height: 260px;
  border-radius: 28px;
  box-shadow: var(--wedding-shadow);
}

.home-intro-thumbs .image-slot + .image-slot {
  width: 72%;
  min-height: 210px;
  margin: -70px 0 0 auto;
  border: 8px solid #fffaf7;
}

.home-intro-copy {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--wedding-soft-shadow);
}

.primary-button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 26px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
}

.primary-button::after {
  content: "→";
  margin-left: 10px;
}

.home-service-flow {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, #ffffff, var(--wedding-ivory));
}

.home-service-flow .page-lead,
.home-service-flow .home-row {
  width: min(1060px, calc(100% - 44px));
  margin-right: auto;
  margin-left: auto;
}

.home-row {
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(185, 120, 130, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--wedding-soft-shadow);
}

.home-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.home-row .image-slot {
  min-height: 280px;
  border-radius: 26px;
}

.process-number {
  color: var(--wedding-gold);
  font-size: 36px;
  font-weight: 700;
}

.home-row h3 {
  margin-top: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.home-blog-panel {
  background:
    radial-gradient(circle at 15% 10%, rgba(215, 161, 167, 0.14), transparent 20%),
    var(--wedding-bg);
}

.home-blog-list-box,
.blog-archive-box {
  border: 1px solid rgba(185, 120, 130, 0.12);
  border-radius: 30px;
  box-shadow: var(--wedding-shadow);
}

.home-blog-row,
.blog-archive-row {
  border-color: rgba(185, 120, 130, 0.12);
}

.home-blog-row .image-slot,
.blog-thumb {
  border-radius: 22px;
}

.home-company {
  padding: clamp(90px, 10vw, 140px) 24px;
}

.home-company-inner {
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 34px;
  background: rgba(7, 71, 112, 0.32);
  backdrop-filter: blur(6px);
}

.home-stats {
  gap: 16px;
}

.home-stats article {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(215, 161, 167, 0.96), rgba(200, 167, 109, 0.86));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.home-dark-cta {
  padding: clamp(60px, 8vw, 100px) 20px;
}

.home-dark-overlay {
  padding: 0;
}

.home-cta-cards a {
  min-height: 300px;
  border-radius: 28px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.home-cta-cards a:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.campaign-banner {
  background:
    linear-gradient(135deg, rgba(244, 182, 189, 0.96), rgba(226, 162, 118, 0.9), rgba(201, 134, 145, 0.92)),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.26), transparent 24%);
}

.campaign-banner em {
  border-radius: 999px;
}

.contact-band {
  padding: clamp(74px, 8vw, 116px) 24px;
  background:
    radial-gradient(circle at 80% 18%, rgba(215, 161, 167, 0.18), transparent 22%),
    var(--wedding-ivory);
}

.contact-actions {
  gap: 12px;
}

.phone-link {
  color: var(--wedding-rose);
  font-weight: 900;
}

.site-footer {
  background:
    linear-gradient(rgba(52, 39, 35, 0.96), rgba(52, 39, 35, 0.96)),
    radial-gradient(circle at 50% 0, rgba(215, 161, 167, 0.25), transparent 34%);
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .site-nav,
  .header-actions {
    justify-content: flex-start;
  }

  .home-hero-copy {
    width: calc(100% - 32px);
    padding: 26px;
    border-radius: 22px;
  }

  .home-intro,
  .home-row,
  .home-row.reverse {
    grid-template-columns: 1fr;
  }

  .home-row.reverse .image-slot,
  .home-row.reverse > div:not(.image-slot) {
    order: initial;
  }

  .home-stats,
  .home-cta-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section,
  .home-service-flow,
  .home-blog-panel,
  .contact-form-section,
  .faq-page,
  .blog-archive {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .site-header {
    padding: 14px;
  }

  .brand {
    width: 210px;
  }

  .site-nav {
    gap: 8px 12px;
  }

  .header-actions .badge-link,
  .header-actions .social-link,
  .header-actions .naver-link {
    display: none;
  }

  .home-hero {
    min-height: 610px;
  }

  .home-hero-copy {
    margin-bottom: 34px;
    background: rgba(31, 19, 17, 0.34);
  }

  .home-intro-copy,
  .home-row,
  .home-company-inner {
    border-radius: 22px;
  }

  .home-intro-thumbs .image-slot {
    min-height: 210px;
  }

  .home-intro-thumbs .image-slot + .image-slot {
    width: 82%;
    min-height: 160px;
  }

  .home-blog-list-box,
  .blog-archive-box {
    padding: 22px;
    border-radius: 22px;
  }

  .home-blog-row {
    grid-template-columns: 1fr;
  }
}

/* Modern Romantic Advisory redesign */
:root {
  --modern-bg: #d8d7d2;
  --modern-canvas: #f8f7f4;
  --modern-surface: #ffffff;
  --modern-line: rgba(28, 24, 24, 0.08);
  --modern-ink: #171313;
  --modern-muted: #706965;
  --modern-soft: #f1ede8;
  --modern-rose: #c98f98;
  --modern-rose-soft: #f0d9d8;
  --modern-champagne: #d9b99e;
  --modern-dark: #17151a;
  --modern-button: linear-gradient(135deg, #1b171a 0%, #3a2b30 58%, #c98f98 100%);
  --modern-romance: linear-gradient(135deg, #c98f98 0%, #e8c8c2 55%, #b88a72 100%);
  --modern-shadow: 0 20px 60px rgba(23, 19, 19, 0.08);
  --modern-card-shadow: 0 14px 34px rgba(23, 19, 19, 0.06);
  --font-body: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --font-display: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --font-accent: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --font-display-weight: 700;
  --font-display-weight-strong: 800;
}

html {
  min-height: 100%;
  background: var(--modern-canvas);
}

body {
  position: relative;
  z-index: 1;
  color: var(--modern-ink);
  background: var(--modern-canvas);
  font-family: var(--font-body);
  line-height: 1.72;
}

body::before {
  content: none;
}

main {
  background: var(--modern-canvas);
  overflow-x: hidden;
}

h1,
h2,
h3,
.footer-logo {
  color: var(--modern-ink);
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  letter-spacing: -0.03em;
}

p {
  color: var(--modern-muted);
}

.site-header {
  max-width: none;
  min-height: 78px;
  margin: 0;
  padding: 22px clamp(28px, 6vw, 72px) 14px;
  border: 0;
  border-radius: 0;
  background: var(--modern-dark);
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  width: 160px;
}

.brand-logo {
  max-height: 34px;
}

.brand-subtitle {
  display: none;
}

.site-nav {
  gap: clamp(18px, 3vw, 34px);
  color: var(--modern-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.header-actions {
  gap: 8px;
}

.pill,
.badge-link,
.social-link,
.naver-link {
  min-width: auto;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid var(--modern-line);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(23, 19, 19, 0.06);
}

.pill-line {
  color: #ffffff;
  background: #06c755;
  border-color: transparent;
}

.pill-form,
.primary-button,
.contact-form button {
  color: #ffffff;
  background: var(--modern-button);
  border: 0;
}

.badge-link,
.social-link,
.naver-link {
  background: #ffffff;
}

.badge-link {
  color: var(--modern-ink);
}

.social-link {
  color: var(--modern-rose);
}

.naver-link {
  color: #03a64a;
}

.home-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(40px, 6vw, 82px);
  align-items: center;
  padding: clamp(72px, 9vw, 116px) clamp(28px, 7vw, 92px) clamp(46px, 7vw, 84px);
  background: var(--modern-canvas);
}

.home-hero::before {
  content: none;
}

.home-hero-image {
  position: relative;
  inset: auto;
  order: 2;
  min-height: 350px;
  border-radius: 18px;
  background-image:
    linear-gradient(180deg, rgba(23, 19, 19, 0.04), rgba(23, 19, 19, 0.1)),
    url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-8736x4896_v-frms_webp_b58c6477-93c5-4aa3-bf29-981460f1582f_regular.webp");
  background-size: cover;
  background-position: center;
  box-shadow: var(--modern-shadow);
  transform: none;
}

.home-hero-copy {
  order: 1;
  width: auto;
  margin: 0;
  padding: 0;
  color: var(--modern-ink);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: none;
}

.home-hero-copy h1 {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--modern-ink);
  font-size: clamp(38px, 5.4vw, 60px);
  line-height: 1.15;
  letter-spacing: -0.07em;
}

.home-hero-copy > p:last-child {
  max-width: 520px;
  color: var(--modern-muted);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
}

.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  color: var(--modern-ink);
  background: #ffffff;
  border: 1px solid var(--modern-line);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
}

.home-intro {
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  padding-right: clamp(28px, 7vw, 92px);
  padding-left: clamp(28px, 7vw, 92px);
  background: var(--modern-canvas);
}

.home-intro-copy {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.home-intro-copy h2,
.page-lead h2,
.contact-band h2 {
  color: var(--modern-ink);
  font-size: clamp(26px, 4.2vw, 44px);
  line-height: 1.18;
}

.home-intro-copy p:not(.section-label),
.home-row p,
.home-dark-overlay p {
  color: var(--modern-muted);
  font-family: var(--font-body);
  font-size: 15px;
}

.home-intro-thumbs .image-slot {
  border-radius: 18px;
  box-shadow: var(--modern-card-shadow);
}

.primary-button,
.contact-form button {
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(23, 19, 19, 0.13);
}

.home-service-flow {
  gap: 26px;
  padding-right: clamp(28px, 7vw, 92px);
  padding-left: clamp(28px, 7vw, 92px);
  background: var(--modern-canvas);
}

.home-service-flow .page-lead {
  max-width: 720px;
  margin-bottom: 26px;
  text-align: center;
}

.home-service-flow .home-row {
  width: min(100%, 930px);
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--modern-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.home-service-flow .home-row:nth-of-type(2) {
  background:
    radial-gradient(circle at 72% 18%, rgba(201, 143, 152, 0.16), transparent 34%),
    var(--modern-dark);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(23, 19, 19, 0.22);
}

.home-service-flow .home-row:nth-of-type(2) h3,
.home-service-flow .home-row:nth-of-type(2) .process-number {
  color: #ffffff;
}

.home-service-flow .home-row:nth-of-type(2) p:not(.process-number) {
  color: rgba(255, 255, 255, 0.74);
}

.home-row.reverse,
.home-row {
  grid-template-columns: 96px minmax(0, 1fr);
}

.home-row.reverse .image-slot,
.home-row.reverse > div:not(.image-slot) {
  order: initial;
}

.home-row .image-slot {
  min-height: auto;
  border-radius: 14px;
  box-shadow: none;
}

.process-number {
  margin: 0 0 12px;
  color: var(--modern-rose);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.home-row h3 {
  margin-bottom: 12px;
  color: var(--modern-ink);
  font-size: clamp(20px, 2.5vw, 28px);
}

.home-company {
  margin: 40px clamp(22px, 5vw, 64px);
  padding: clamp(48px, 7vw, 86px) clamp(24px, 5vw, 58px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 75% 18%, rgba(201, 143, 152, 0.2), transparent 34%),
    var(--modern-dark);
}

.home-company-inner {
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.home-company h2,
.home-company-lead,
.home-company .section-label {
  color: #ffffff;
}

.home-company .section-label {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.home-stats {
  gap: 12px;
}

.home-stats article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.home-stats strong {
  font-family: var(--font-display);
}

.home-dark-cta {
  padding: clamp(70px, 8vw, 110px) clamp(28px, 7vw, 92px);
  background: var(--modern-canvas);
  color: var(--modern-ink);
}

.home-dark-overlay .section-label {
  color: var(--modern-ink);
  background: #ffffff;
  border-color: var(--modern-line);
}

.home-cta-cards {
  gap: 12px;
}

.home-cta-cards a {
  min-height: 230px;
  padding: 30px 26px;
  border: 1px solid var(--modern-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--modern-ink);
  box-shadow: none;
}

.home-cta-cards a:nth-child(2) {
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 143, 152, 0.2), transparent 34%),
    var(--modern-dark);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(23, 19, 19, 0.22);
}

.home-cta-cards a:nth-child(2) span {
  color: rgba(255, 255, 255, 0.72);
}

.home-cta-cards strong {
  color: inherit;
  font-family: var(--font-display);
}

.home-cta-cards span {
  color: var(--modern-muted);
}

.campaign-banner {
  margin: 0 clamp(22px, 5vw, 64px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 74% 24%, rgba(255, 255, 255, 0.2), transparent 34%),
    var(--modern-romance);
}

.contact-band {
  background: var(--modern-canvas);
}

.phone-link {
  color: var(--modern-ink);
}

.map {
  margin: 0 clamp(22px, 5vw, 64px) 52px;
  overflow: hidden;
  border-radius: 22px;
  filter: grayscale(0.85);
}

.site-footer {
  border-radius: 0 0 10px 10px;
  background: var(--modern-dark);
}

@media (max-width: 900px) {
  html {
    background: var(--modern-canvas);
  }

  body {
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-header {
    border-radius: 0;
  }

  .home-hero {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .home-hero > .home-hero-image {
    order: 1;
    min-height: 320px;
  }

  .home-hero-copy {
    order: 2;
  }

  .home-service-flow .home-row,
  .home-row,
  .home-row.reverse {
    grid-template-columns: 1fr;
  }

  .home-row .image-slot {
    min-height: 180px;
  }
}

@media (max-width: 640px) {
  .home-hero-copy h1 {
    font-size: clamp(27.2px, 8.8vw, 38.4px);
  }

  .home-company,
  .campaign-banner,
  .map {
    margin-right: 14px;
    margin-left: 14px;
  }
}

/* Typography and image scale refinement */
body {
  font-size: 15.5px;
  line-height: 1.75;
}

.site-nav {
  font-size: 12.5px;
}

.pill,
.badge-link,
.social-link,
.naver-link {
  font-size: 12.5px;
}

.home-hero-copy h1 {
  max-width: 580px;
  font-size: clamp(36px, 4.8vw, 54px);
  line-height: 1.18;
}

.home-hero-copy > p:last-child {
  max-width: 500px;
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.85;
}

.home-intro-copy h2,
.page-lead h2,
.contact-band h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.24;
}

.home-row h3,
.home-cta-cards strong {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
}

.home-company h2 {
  font-size: clamp(28px, 3.6vw, 42px);
}

.home-company-lead {
  font-size: clamp(18px, 2.2vw, 24px);
}

.home-stats strong {
  font-size: clamp(26px, 3vw, 34px);
}

.campaign-banner span {
  font-size: clamp(26px, 4.4vw, 46px);
}

.campaign-banner strong {
  font-size: clamp(19px, 3vw, 30px);
}

.primary-button,
.contact-form button {
  font-size: 13.5px;
}

.home-intro-copy p:not(.section-label),
.home-row p,
.home-dark-overlay p,
.home-company-inner > p:not(.section-label):not(.home-company-lead),
.contact-band p:not(.section-label) {
  font-size: clamp(14.5px, 1.2vw, 16px);
}

@media (min-width: 901px) {
  .home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 405px);
    gap: clamp(34px, 5vw, 68px);
    padding-top: clamp(62px, 8vw, 98px);
  }
}

.home-hero-image {
  min-height: clamp(320px, 38vw, 430px);
  aspect-ratio: 4 / 4.6;
}

.home-intro-thumbs .image-slot {
  min-height: clamp(220px, 28vw, 310px);
  aspect-ratio: 4 / 3.2;
}

.home-intro-thumbs .image-slot + .image-slot {
  min-height: clamp(150px, 20vw, 220px);
  aspect-ratio: 4 / 3;
}

@media (min-width: 901px) {
  .home-intro {
    grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
    gap: clamp(56px, 7.5vw, 96px);
    max-width: min(1180px, calc(100% - 56px));
    margin-inline: auto;
  }

  .home-intro-copy {
    padding-left: clamp(16px, 2.5vw, 32px);
  }

  .home-intro-thumbs .image-slot + .image-slot {
    width: 66%;
    margin: -64px auto 0 0;
  }

  .home-service-flow .home-row,
  .home-row {
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  }

  .home-service-flow .home-row.reverse,
  .home-row.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  }
}

.home-cta-cards a {
  min-height: clamp(190px, 21vw, 230px);
}

.blog-thumb,
.home-blog-row .image-slot {
  min-height: clamp(150px, 18vw, 190px);
}

.flow-item .image-slot {
  min-height: clamp(170px, 22vw, 240px);
}

.profile-photo,
.about-visual-message .image-slot {
  min-height: clamp(280px, 36vw, 420px);
}

@media (max-width: 900px) {
  .home-hero-copy h1 {
    font-size: clamp(32.4px, 6.4vw, 46.8px);
  }

  .home-hero > .home-hero-image {
    min-height: clamp(280px, 48vw, 390px);
    aspect-ratio: 16 / 10;
  }

  .home-service-flow .home-row,
  .home-row,
  .home-row.reverse {
    grid-template-columns: 1fr;
  }

  .home-row .image-slot,
  .home-service-flow .home-row .image-slot {
    min-height: clamp(190px, 42vw, 280px);
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 11.6px;
  }

  .site-nav {
    font-size: 9.6px;
  }

  .home-hero-copy h1 {
    font-size: clamp(25.6px, 8vw, 33.6px);
    line-height: 1.22;
  }

  .home-hero-copy > p:last-child {
    font-size: 14.4px;
  }

  .home-intro-copy h2,
  .page-lead h2,
  .contact-band h2 {
    font-size: clamp(20px, 6.4vw, 27.2px);
  }

  .home-hero > .home-hero-image {
    min-height: 250px;
  }

  .home-intro-thumbs .image-slot {
    min-height: 200px;
  }

  .home-row .image-slot,
  .home-service-flow .home-row .image-slot {
    min-height: 185px;
  }
}

/* Button alignment and contrast fixes */
.header-actions,
.contact-actions,
.contact-quick-links,
.footer-buttons {
  align-items: center;
}

.header-actions {
  row-gap: 8px;
}

.pill,
.badge-link,
.social-link,
.naver-link,
.primary-button,
.contact-form button,
.footer-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.pill,
.badge-link,
.social-link,
.naver-link {
  height: 36px;
  line-height: 1;
}

.primary-button,
.contact-form button {
  min-width: 150px;
  text-align: center;
  line-height: 1.2;
}

.line-button,
.primary-button.line-button,
.pill-line {
  color: #ffffff;
  background: #06c755;
  border-color: transparent;
}

.line-button:hover,
.primary-button.line-button:hover,
.pill-line:hover {
  background: #05b64d;
}

.badge-link,
.social-link,
.naver-link {
  color: var(--modern-ink);
  background: #ffffff;
}

.social-link {
  color: #9b6470;
}

.naver-link {
  color: #038a3f;
}

.campaign-banner {
  color: var(--modern-ink);
  text-shadow: none;
}

.campaign-banner span,
.campaign-banner strong {
  color: var(--modern-ink);
}

.campaign-banner em {
  color: var(--modern-ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(23, 19, 19, 0.18);
}

.home-company,
.home-service-flow .home-row:nth-of-type(2),
.home-cta-cards a:nth-child(2),
.site-footer {
  color: #ffffff;
}

.home-company p,
.home-company small,
.home-service-flow .home-row:nth-of-type(2) p,
.home-cta-cards a:nth-child(2) span,
.site-footer p,
.site-footer small {
  color: rgba(255, 255, 255, 0.76);
}

.home-company h2,
.home-company .home-company-lead,
.home-company .section-label,
.home-service-flow .home-row:nth-of-type(2) h3,
.home-service-flow .home-row:nth-of-type(2) .process-number,
.home-cta-cards a:nth-child(2) strong,
.site-footer .footer-logo {
  color: #ffffff;
}

@media (max-width: 900px) {
  .header-actions {
    justify-content: flex-start;
  }

  .contact-actions,
  .contact-quick-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .pill,
  .primary-button,
  .contact-form button {
    min-width: 0;
  }

  .contact-phone-block {
    width: 100%;
    padding-right: 0;
    border-right: 0;
  }

  .contact-actions .primary-button,
  .contact-actions .phone-link,
  .contact-quick-links .primary-button,
  .contact-quick-links .phone-link {
    width: 100%;
  }
}

/* Whole-site contrast pass for subpages */
.page-hero {
  min-height: 220px;
  padding: clamp(56px, 7vw, 86px) clamp(22px, 5vw, 64px);
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 143, 152, 0.15), transparent 34%),
    linear-gradient(180deg, #fbfaf7, #f3eee9);
}

.page-hero .section-label {
  color: var(--modern-ink);
  background: #ffffff;
  border-color: var(--modern-line);
}

.page-hero h1 {
  color: var(--modern-ink);
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.18;
}

.company-dark {
  background:
    radial-gradient(circle at 72% 12%, rgba(201, 143, 152, 0.16), transparent 32%),
    var(--modern-dark);
  color: #ffffff;
}

.company-dark h2,
.company-dark > h2,
.company-dark .section-label {
  color: #ffffff;
}

.company-dark .section-label {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.company-dark dl {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.company-dark dt {
  color: var(--modern-ink);
}

.company-dark dd {
  color: var(--modern-muted);
}

.about-visual-message,
.home-company,
.home-service-flow .home-row:nth-of-type(2),
.home-cta-cards a:nth-child(2),
.site-footer {
  background-color: var(--modern-dark);
}

.about-visual-message h2,
.about-visual-message h3,
.about-visual-message .section-label,
.about-visual-message .visual-copy p,
.home-service-flow .home-row:nth-of-type(2) h3,
.home-service-flow .home-row:nth-of-type(2) p,
.home-service-flow .home-row:nth-of-type(2) .process-number,
.home-cta-cards a:nth-child(2) strong,
.home-cta-cards a:nth-child(2) span {
  color: #ffffff;
}

.about-visual-message .visual-copy p,
.home-service-flow .home-row:nth-of-type(2) p,
.home-cta-cards a:nth-child(2) span {
  opacity: 0.78;
}

.contact-band .section-label,
.page-lead .section-label,
.service-price .section-label,
.price .section-label,
.faq-page .section-label,
.blog-archive .section-label {
  color: var(--modern-ink);
  background: #ffffff;
  border-color: var(--modern-line);
  box-shadow: 0 10px 26px rgba(84, 70, 66, 0.08);
}

.contact-actions .phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  color: var(--modern-ink);
}

.contact-phone-block {
  padding-right: 32px;
  border-right: 1px solid var(--modern-line);
  text-align: center;
}

.contact-phone-block .phone-link {
  padding-right: 0;
  border-right: 0;
}

.contact-hours {
  margin: 8px 0 0;
  color: var(--modern-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 180px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .page-hero h1 {
    font-size: clamp(24px, 7.2vw, 32px);
  }
}

/* Box spacing refinement across all pages */
.faq-list,
.contact-form,
.price-table,
.note-grid,
.service-note-box,
.blog-archive-box,
.blog-detail,
.home-cta-cards,
.home-stats {
  box-sizing: border-box;
}

.faq-list {
  width: min(900px, 100%);
  gap: 22px;
}

.faq-item {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--modern-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--modern-card-shadow);
}

.faq-item h2 {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px;
  align-items: start;
  margin: 0 0 18px;
  padding-left: 0;
  color: var(--modern-ink);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.035em;
}

.faq-item h2::before,
.faq-item p::before {
  position: static;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  line-height: 1;
}

.faq-item h2::before {
  color: #ffffff;
  background: var(--modern-rose);
}

.faq-item p {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px;
  align-items: start;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--modern-line);
  color: var(--modern-muted);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
}

.faq-item p::before {
  color: var(--modern-rose);
  background: #ffffff;
  border: 1px solid var(--modern-line);
}

.contact-form {
  width: min(760px, 100%);
  gap: 16px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--modern-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--modern-card-shadow);
}

.contact-form-intro {
  width: min(600px, 100%);
  margin: 0 auto clamp(36px, 6vw, 50px);
  text-align: center;
}

.contact-form-intro-title {
  margin: 0 0 10px;
  color: var(--modern-ink);
  font-family: var(--font-body);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 400;
  line-height: 1.8;
}

.contact-form-intro-note {
  margin: 0;
  color: var(--modern-ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.contact-form label {
  display: block;
  padding: 20px 22px;
  color: var(--modern-ink);
  background: #ffffff;
  border: 1px solid var(--modern-line);
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.contact-form .required {
  display: inline;
  margin-left: 4px;
  color: var(--modern-rose);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  padding: 12px 0 4px;
  color: var(--modern-ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(28, 24, 24, 0.14);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
}

.contact-form textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(112, 105, 101, 0.74);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--modern-rose);
  box-shadow: 0 1px 0 var(--modern-rose);
}

.date-grid {
  padding: 22px;
  border: 1px solid var(--modern-line);
  border-radius: 16px;
  background: #ffffff;
}

.date-grid .small-heading {
  margin: 0 0 16px;
  color: var(--modern-ink);
  font-weight: 800;
}

.date-row {
  gap: 12px;
  padding: 12px 0;
}

.date-row + .date-row {
  border-top: 1px solid var(--modern-line);
}

.date-row input,
.date-row select {
  margin-top: 0;
  padding-right: 10px;
  padding-left: 10px;
  background: var(--modern-canvas);
  border: 1px solid var(--modern-line);
  border-radius: 10px;
}

.contact-form input[type="date"] {
  min-height: 48px;
  color: var(--modern-ink);
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.72;
}

.privacy-row {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-align: left;
}

.privacy-row input {
  flex: none;
  width: 18px;
  min-height: 18px;
  margin: 0;
}

.privacy-row-label {
  margin: 0;
  color: var(--modern-ink);
  font-size: 15px;
  line-height: 1.7;
  cursor: pointer;
}

.privacy-row-label a {
  color: var(--modern-rose);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-row-label a:hover {
  opacity: 0.78;
}

.privacy-policy-section {
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 56px) clamp(72px, 9vw, 110px);
  background: var(--modern-canvas);
}

.privacy-policy-panel {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 50px);
  border: 1px solid var(--modern-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--modern-card-shadow);
}

.privacy-policy-intro {
  margin: 0 0 clamp(36px, 5vw, 50px);
  color: var(--modern-ink);
  font-size: 16px;
  line-height: 1.85;
}

.privacy-policy-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.privacy-policy-item {
  display: grid;
  grid-template-columns: 2px 1fr;
  gap: 0 14px;
  margin: 0 0 30px;
  padding: 0;
}

.privacy-policy-item::before {
  content: "";
  grid-row: 1 / -1;
  width: 2px;
  margin-top: 4px;
  background: var(--modern-rose);
  border-radius: 2px;
}

.privacy-policy-item h2,
.privacy-policy-item p {
  grid-column: 2;
}

.privacy-policy-item h2 {
  margin: 0 0 10px;
  color: var(--modern-rose);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.privacy-policy-item p {
  margin: 0;
  color: var(--modern-ink);
  font-size: 16px;
  line-height: 1.75;
}

.privacy-policy-contact {
  display: grid;
  grid-template-columns: 2px 1fr;
  gap: 0 14px;
  margin-top: clamp(28px, 4vw, 40px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--modern-line);
}

.privacy-policy-contact::before {
  content: "";
  grid-row: 1 / -1;
  width: 2px;
  margin-top: 4px;
  background: var(--modern-rose);
  border-radius: 2px;
}

.privacy-policy-contact h2,
.privacy-policy-contact p {
  grid-column: 2;
}

.privacy-policy-contact h2 {
  margin: 0 0 12px;
  color: var(--modern-rose);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
}

.privacy-policy-contact p {
  margin: 0 0 10px;
  color: var(--modern-ink);
  font-size: 16px;
  line-height: 1.75;
}

.privacy-policy-contact p:last-child {
  margin-bottom: 0;
}

.privacy-policy-contact a {
  color: var(--modern-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-policy-contact a:hover {
  color: var(--modern-rose);
}

@media (max-width: 640px) {
  .privacy-policy-panel {
    padding: 22px 18px;
  }

  .privacy-policy-intro,
  .privacy-policy-item p,
  .privacy-policy-contact p {
    font-size: 12.6px;
    line-height: 1.7;
  }

  .privacy-policy-item h2,
  .privacy-policy-contact h2 {
    font-size: 14.4px;
  }
}

.price-table {
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--modern-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--modern-card-shadow);
}

.price-table div {
  gap: 18px;
  padding: 20px 8px;
}

.note-grid,
.service-note-box {
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--modern-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--modern-card-shadow);
}

.note-grid article,
.service-note-box article {
  padding: clamp(22px, 3vw, 32px);
  border-radius: 16px;
  background: #ffffff;
}

.home-cta-cards a,
.home-stats article,
.blog-archive-row {
  padding: clamp(24px, 3vw, 34px);
}

.blog-archive-row {
  border-radius: 16px;
}

.blog-archive-row:hover {
  background: rgba(255, 255, 255, 0.68);
}

@media (max-width: 640px) {
  .faq-item,
  .contact-form,
  .date-grid,
  .price-table,
  .note-grid,
  .service-note-box {
    padding: 18px;
    border-radius: 16px;
  }

  .contact-form label {
    padding: 17px 16px;
  }

  .faq-item h2,
  .faq-item p {
    grid-template-columns: 26px 1fr;
    gap: 12px;
  }

  .faq-item h2::before,
  .faq-item p::before {
    width: 24px;
    height: 24px;
  }

  .price-table div {
    padding: 18px 4px;
  }
}

/* Image fit audit: keep badges/logos from cropping */
.image-slot,
.blog-thumb,
.blog-detail-cover,
.profile-photo,
.home-hero-image {
  background-repeat: no-repeat;
}

.home-hero-image,
.image-couple-1,
.image-couple-2,
.image-support,
.image-experience,
.image-consult,
.profile-photo,
.blog-thumb,
.blog-detail-cover {
  background-size: cover;
  background-position: center;
}

.image-network {
  background-color: #f3f4f4;
  background-size: contain;
  background-position: center;
  border: 1px solid var(--modern-line);
}

.home-row .image-network,
.flow-item .image-network {
  padding: 18px;
  background-origin: content-box;
  background-clip: padding-box;
}

.home-service-flow .home-row .image-network,
.home-row .image-network {
  aspect-ratio: 4 / 3;
}

.flow-item .image-network {
  aspect-ratio: 16 / 9;
  min-height: clamp(160px, 20vw, 230px);
}

.blog-thumb-1 {
  background-position: center 42%;
}

.blog-thumb-2,
.blog-thumb-3 {
  background-position: center;
}

.image-couple-1 {
  background-position: center 42%;
}

.image-couple-2 {
  background-position: 65% center;
}

.image-support,
.image-experience,
.image-consult {
  background-position: center;
}

@media (max-width: 900px) {
  .home-service-flow .home-row .image-network,
  .home-row .image-network,
  .flow-item .image-network {
    aspect-ratio: 16 / 9;
    min-height: 190px;
  }
}

/* Final image consistency pass: preserve full image content */
.image-slot,
.blog-thumb,
.blog-detail-cover,
.profile-photo,
.about-visual-message .image-slot,
.flow-item .image-slot,
.home-row .image-slot,
.home-intro-thumbs .image-slot {
  background-color: #f3f4f4;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--modern-line);
}

.home-hero-image {
  background-size: cover;
  background-position: center;
}

.home-intro-thumbs .image-slot,
.home-row .image-slot,
.flow-item .image-slot,
.blog-thumb {
  box-shadow: var(--modern-card-shadow);
}

.home-row .image-slot,
.home-service-flow .home-row .image-slot,
.flow-item .image-slot {
  min-height: clamp(180px, 22vw, 250px);
  aspect-ratio: 16 / 10;
}

.home-intro-thumbs .image-slot {
  min-height: clamp(220px, 28vw, 310px);
  aspect-ratio: 4 / 3;
}

.home-intro-thumbs .image-slot + .image-slot {
  min-height: clamp(170px, 22vw, 230px);
  aspect-ratio: 4 / 3;
}

.blog-thumb,
.blog-detail-cover {
  min-height: clamp(180px, 24vw, 280px);
  aspect-ratio: 16 / 10;
}

.profile-photo,
.about-visual-message .image-slot {
  min-height: clamp(260px, 34vw, 390px);
  aspect-ratio: 4 / 3;
}

.image-network {
  padding: 22px;
  background-origin: content-box;
}

@media (max-width: 900px) {
  .home-row .image-slot,
  .home-service-flow .home-row .image-slot,
  .flow-item .image-slot,
  .blog-thumb,
  .blog-detail-cover {
    min-height: clamp(190px, 42vw, 280px);
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .home-row .image-slot,
  .home-service-flow .home-row .image-slot,
  .flow-item .image-slot,
  .blog-thumb,
  .blog-detail-cover,
  .home-intro-thumbs .image-slot {
    min-height: 210px;
  }
}

/* About page reference sync */
.about-hero {
  min-height: 220px;
  padding: clamp(56px, 7vw, 86px) clamp(22px, 5vw, 64px);
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 143, 152, 0.15), transparent 34%),
    linear-gradient(180deg, #fbfaf7, #f3eee9);
}

.about-hero .section-label {
  color: var(--modern-ink);
  background: #ffffff;
  border-color: var(--modern-line);
}

.about-hero h1 {
  color: var(--modern-ink);
}

.about-message {
  background: var(--modern-canvas);
}

.about-message-inner {
  grid-template-columns: minmax(240px, 300px) minmax(0, 680px);
  width: min(1080px, 100%);
  margin: clamp(38px, 5vw, 58px) auto 0;
  gap: clamp(52px, 8vw, 100px);
  align-items: start;
}

.about-profile-photo {
  min-height: clamp(300px, 36vw, 430px);
  aspect-ratio: 5 / 6;
  background-image: url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-1084x1512_v-fms_webp_81b6ebde-4737-4456-9092-13a65d4ffb24_middle.webp");
  background-size: cover;
  background-position: right center;
  border: 0;
  border-radius: 0;
  box-shadow: 0 22px 50px rgba(88, 70, 66, 0.18);
}

.about-message-copy .small-heading {
  color: var(--modern-rose);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.about-message-copy h2 {
  margin: 6px 0 18px;
  color: var(--modern-ink);
  font-size: clamp(26px, 3.2vw, 36px);
}

.about-message-copy .about-lead {
  color: var(--modern-ink);
  font-family: var(--font-display);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.75;
}

.about-message-copy p {
  font-size: 16px;
  line-height: 2;
}

.about-value {
  padding: clamp(70px, 8vw, 110px) clamp(20px, 5vw, 56px);
  background:
    linear-gradient(rgba(36, 31, 32, 0.58), rgba(36, 31, 32, 0.58)),
    url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-6016x4016_v-frms_webp_e678a8c3-4a30-4985-beb4-ac46d3408a7c_regular.webp") center / cover no-repeat;
}

.about-value-card {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 66px);
  background: rgba(36, 31, 32, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(6px);
}

.about-value-card .section-label {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.about-value-card h2 {
  margin-top: 18px;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 34px);
}

.about-value-title {
  margin: 22px 0 18px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.3vw, 38px);
  font-weight: 700;
  line-height: 1.55;
}

.about-value-card p:not(.section-label):not(.about-value-title) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 2;
}

.about-overview {
  background: var(--modern-dark);
}

.about-overview dl {
  width: min(900px, 100%);
  padding: clamp(28px, 5vw, 50px);
  border-radius: 0;
}

.about-overview div {
  grid-template-columns: minmax(120px, 25%) 1fr;
  padding: 18px 10px;
}

@media (max-width: 900px) {
  .about-message-inner {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
  }

  .about-profile-photo {
    width: min(360px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .about-hero {
    min-height: 220px;
  }

  .about-message-copy p,
  .about-value-card p:not(.section-label):not(.about-value-title) {
    font-size: 12px;
    line-height: 1.85;
  }

  .about-value-card {
    padding: 34px 22px;
    border-radius: 18px;
  }

  .about-overview div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Service price page reference sync */
.service-plan-lead {
  width: min(900px, 100%);
}

.service-plan-lead .section-label {
  margin-right: auto;
  margin-left: auto;
}

.service-plan-lead h2 {
  font-size: clamp(24px, 3.2vw, 36px);
}

.plan-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(900px, 100%);
  margin: 38px auto 0;
}

.plan-summary article {
  padding: clamp(24px, 3vw, 34px);
  background: #ffffff;
  border: 1px solid var(--modern-line);
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--modern-card-shadow);
}

.plan-summary span,
.service-price-table span,
.ticket-table span {
  color: var(--modern-ink);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.plan-summary strong {
  display: block;
  margin: 12px 0 6px;
  color: var(--modern-rose);
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 34px);
}

.plan-summary small,
.ticket-table small {
  color: var(--modern-muted);
}

.service-price-panel,
.option-section {
  width: min(900px, 100%);
  margin: clamp(46px, 6vw, 72px) auto 0;
  text-align: center;
}

.service-price-panel h3,
.option-section h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px;
  padding: 13px 28px;
  color: #ffffff;
  font-size: clamp(20px, 2.4vw, 26px);
  border-radius: 12px;
  background: var(--button-gradient);
  box-shadow: 0 14px 34px rgba(196, 128, 139, 0.22);
}

.service-price-table {
  margin-top: 0;
}

.service-price-table div,
.ticket-table div {
  grid-template-columns: minmax(120px, 1fr) minmax(160px, 1.2fr) minmax(100px, 0.8fr);
}

.service-price-table strong,
.ticket-table strong {
  color: var(--modern-ink);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(900px, 100%);
  margin: clamp(36px, 5vw, 58px) auto 0;
}

.service-detail-grid article {
  padding: clamp(26px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--modern-line);
  border-radius: 20px;
  text-align: left;
  box-shadow: var(--modern-card-shadow);
}

.service-detail-grid h3 {
  margin: 0 0 18px;
  color: var(--modern-rose);
  font-size: 20px;
}

.service-detail-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-grid li {
  position: relative;
  padding-left: 24px;
  color: var(--modern-muted);
  line-height: 1.75;
}

.service-detail-grid li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--modern-rose);
}

.service-detail-grid dl {
  margin: 0;
}

.service-detail-grid dl div {
  padding: 14px 0;
  border-bottom: 1px solid var(--modern-line);
}

.service-detail-grid dl div:last-child {
  border-bottom: 0;
}

.service-detail-grid dt {
  color: var(--modern-ink);
  font-weight: 700;
}

.service-detail-grid dd {
  margin: 6px 0 0;
  color: var(--modern-muted);
  line-height: 1.75;
}

.option-section > p {
  margin: 0 auto 26px;
  color: var(--modern-muted);
  line-height: 1.8;
}

.ticket-table {
  padding: clamp(20px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--modern-line);
  border-radius: 20px;
  box-shadow: var(--modern-card-shadow);
}

.ticket-table div {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 12px 8px;
  border-bottom: 1px solid var(--modern-line);
  text-align: left;
}

.ticket-table div:last-child {
  border-bottom: 0;
}

.option-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 26px;
  text-align: left;
}

.option-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid var(--modern-line);
  border-radius: 14px;
}

.option-list span {
  color: var(--modern-ink);
  font-weight: 700;
}

.option-list strong {
  flex: none;
  color: var(--modern-rose);
}

@media (max-width: 900px) {
  .plan-summary,
  .service-detail-grid,
  .option-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-price-table div,
  .ticket-table div {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .option-list div {
    flex-direction: column;
    gap: 8px;
  }
}

/* Layout overlap fixes */
.home-intro > *,
.home-row > *,
.flow-item > *,
.blog-archive-row > *,
.blog-archive-copy {
  min-width: 0;
}

.home-row .image-slot,
.home-service-flow .home-row .image-slot,
.flow-item .image-slot,
.blog-thumb {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .home-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-intro-copy {
    width: 100%;
  }

  .home-intro-thumbs .image-slot + .image-slot {
    width: 88%;
    margin: -48px 0 0 auto;
  }

  .home-service-flow .home-row,
  .home-row,
  .home-row.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .flow-item .process-copy {
    padding-left: 0;
  }

  .flow-item .process-copy::before,
  .flow-item .process-copy::after {
    display: none;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-copy {
    background: transparent;
    backdrop-filter: none;
    border: 0;
    box-shadow: none;
  }

  .blog-archive-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .home-intro-thumbs .image-slot + .image-slot {
    width: 100%;
    margin: 12px 0 0;
    border-width: 6px;
  }

  .blog-archive-copy h3 {
    font-size: 14.4px;
    line-height: 1.45;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .contact-phone-block {
    width: 100%;
    padding-right: 0;
    border-right: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--modern-line);
  }
}

/* Footer reference sync */
.site-footer {
  padding: clamp(52px, 7vw, 72px) clamp(24px, 5vw, 48px) clamp(36px, 5vw, 48px);
  color: #ffffff;
  background: var(--modern-dark);
  text-align: center;
  border-radius: 0 0 10px 10px;
}

.site-footer .footer-logo {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(17px, 2.4vw, 20px);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.site-footer > p:not(.footer-logo):not(.footer-address) {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer .footer-address {
  max-width: 720px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.8;
}

.footer-links,
.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-links {
  gap: clamp(14px, 3vw, 22px);
  margin: 28px 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.footer-links a {
  color: inherit;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-buttons {
  gap: 12px;
  margin: 0 0 28px;
}

.footer-buttons a {
  min-width: 180px;
  min-height: 44px;
  padding: 10px 28px;
  border-radius: 4px;
  background: #ffffff;
  color: var(--modern-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.footer-buttons a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.footer-legal {
  margin: 0 0 14px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 160ms ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer small {
  display: block;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.fixed-cta {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 58px;
  transform: translateY(-50%);
}

.fixed-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  padding: 6px 4px;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-align: center;
  white-space: normal;
  box-shadow: none;
  transition: background 160ms ease, color 160ms ease;
}

.fixed-cta a + a {
  border-top: 0;
}

.fixed-cta a:hover {
  filter: none;
}

.fixed-cta-line {
  background: #06c755;
}

.fixed-cta-form {
  background: #1a1714;
}

.fixed-cta-icon {
  display: none;
}

.fixed-cta-text {
  white-space: normal;
}

@media (max-width: 900px) {
  .fixed-cta {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    transform: none;
    flex-direction: row;
    z-index: 35;
    border-top: 1px solid rgba(26, 23, 20, 0.1);
    box-shadow: 0 -6px 24px rgba(26, 23, 20, 0.1);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .fixed-cta a {
    flex: 1;
    aspect-ratio: auto;
    min-height: 52px;
    padding: 12px 10px;
    font-size: 11.7px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.3;
    white-space: nowrap;
  }

  .fixed-cta a + a {
    border-top: 0;
    border-left: 1px solid rgba(26, 23, 20, 0.12);
  }

  .fixed-cta-text {
    white-space: nowrap;
  }

  .fixed-cta-text br {
    display: none;
  }

  body:has(.fixed-cta) {
    padding-bottom: 0;
  }

  body:has(.ql-page--inner):has(.fixed-cta) {
    padding-bottom: calc(52px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 640px) {
  .footer-links {
    gap: 12px 16px;
  }

  .footer-buttons a {
    width: min(220px, 100%);
  }
}

/* Section label unified — shape & typography only */
.section-label,
.home-hero-copy .section-label,
.home-intro-copy .section-label,
.page-lead .section-label,
.home-dark-overlay .section-label,
.contact-band .section-label,
.page-hero .section-label,
.about-hero .section-label,
.service-plan-lead .section-label,
.faq-page .section-label,
.blog-archive .section-label,
.service-price .section-label,
.price .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: auto;
  margin: 0 0 14px;
  padding: 6px 14px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.home-hero-copy .section-label {
  margin-bottom: 18px;
}

.section-label,
.page-hero .section-label,
.page-lead .section-label,
.home-intro-copy .section-label,
.home-dark-overlay .section-label,
.home-hero-copy .section-label,
.contact-band .section-label,
.about-hero .section-label,
.service-plan-lead .section-label,
.faq-page .section-label,
.blog-archive .section-label,
.service-price .section-label,
.price .section-label {
  color: var(--modern-ink);
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(84, 70, 66, 0.1);
}

.home-company .section-label,
.company-dark .section-label,
.about-visual-message .section-label,
.about-value-card .section-label {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  box-shadow: none;
}

.home-dark-overlay {
  text-align: center;
}

.home-dark-overlay .section-label {
  margin-bottom: 18px;
}

.service-plan-lead .section-label {
  margin-right: auto;
  margin-left: auto;
}

/* Home intro — wedding couple: center both subjects in frame */
.home-intro-thumbs .image-slot.image-couple-2 {
  background-size: cover;
  background-position: 54% 46%;
}

/* Home hero — polaroid frame with handwritten caption */
.home-hero-polaroid {
  order: 2;
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 14px 14px 48px;
  background: #ffffff;
  border-radius: 2px;
  box-shadow:
    0 2px 6px rgba(23, 19, 19, 0.05),
    0 16px 40px rgba(23, 19, 19, 0.12);
  transform: rotate(-1.5deg);
}

.home-hero-polaroid-caption {
  margin: 12px 0 0;
  padding: 0 8px;
  color: #9b6470;
  font-family: "Great Vibes", "Brush Script MT", cursive;
  font-size: clamp(24px, 3.2vw, 30px);
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.home-hero-polaroid .home-hero-image {
  order: unset;
  width: 100%;
  min-height: 0;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  box-shadow: none;
  background-image: url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-8736x4896_v-frms_webp_b58c6477-93c5-4aa3-bf29-981460f1582f_regular.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 54% 38%;
}

@media (max-width: 900px) {
  .home-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 40px);
    align-items: center;
    justify-items: stretch;
    min-height: auto;
    padding: clamp(28px, 5vw, 44px) clamp(20px, 5vw, 28px) clamp(40px, 6vw, 56px);
    overflow: visible;
  }

  .home-hero-copy {
    order: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: 0;
    box-shadow: none;
    text-shadow: none;
  }

  .home-hero-copy h1 {
    max-width: none;
  }

  .home-hero-polaroid {
    order: 2;
    width: min(100%, 300px);
    margin-inline: auto;
    transform: rotate(-0.8deg);
  }

  .home-hero-polaroid .home-hero-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .home-hero {
    gap: 24px;
    padding-top: 20px;
    padding-bottom: 44px;
  }

  .home-hero-polaroid {
    width: min(100%, 280px);
    padding: 12px 12px 40px;
    transform: none;
  }

  .home-hero-polaroid-caption {
    font-size: 17.6px;
  }
}

/* Sticky header + mobile navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23, 19, 19, 0.08);
  box-shadow: 0 4px 20px rgba(23, 19, 19, 0.05);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    border-radius 0.2s ease;
}

.site-header.is-scrolled {
  border-radius: 0;
  background: rgba(248, 247, 244, 0.98);
  box-shadow: 0 8px 28px rgba(23, 19, 19, 0.1);
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--modern-ink, #171313);
  cursor: pointer;
}

.nav-toggle-box {
  display: grid;
  gap: 5px;
  width: 18px;
  height: 14px;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.28s cubic-bezier(0.32, 0.72, 0, 1),
    opacity 0.2s ease;
}

.site-header.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 901px) {
  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    gap: 6px 28px;
    min-height: 72px;
    padding: 12px clamp(20px, 5vw, 72px);
  }

  .brand {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    width: 160px;
  }

  .nav-toggle {
    display: none;
  }

  .site-menu {
    display: contents;
  }

  .site-nav {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-self: end;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-self: start;
  }

  .mobile-menu-top,
  .mobile-menu-actions,
  .mobile-menu-footer {
    display: none;
  }

  .mobile-menu-shell,
  .mobile-menu-body {
    display: contents;
  }
}

@media (max-width: 900px) {
  :root {
    --mobile-header-height: 58px;
  }

  html.nav-open {
    overflow: hidden;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    align-items: center;
    gap: 12px;
    min-height: var(--mobile-header-height);
    padding: 10px 16px;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    filter: none;
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    z-index: 250;
  }

  .site-header.is-scrolled {
    background: #faf9f7;
    border-bottom: 1px solid rgba(23, 19, 19, 0.08);
    box-shadow: 0 1px 0 rgba(23, 19, 19, 0.08);
  }

  /* sticky 서브픽셀 갭으로 html 배경이 비치는 현상 방지 */
  .site-header::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: transparent;
    pointer-events: none;
  }

  .site-header.is-scrolled::before {
    background: #faf9f7;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    width: min(150px, 52vw);
    min-width: 0;
  }

  .brand-logo {
    max-height: 30px;
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    flex-shrink: 0;
    position: relative;
    z-index: 230;
  }

  html.nav-open .site-header,
  .site-header.is-open {
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    pointer-events: none;
  }

  html.nav-open .site-header::before,
  .site-header.is-open::before {
    background: transparent;
  }

  html.nav-open .site-header .brand,
  .site-header.is-open .brand {
    visibility: hidden;
  }

  html.nav-open .nav-toggle,
  .site-header.is-open .nav-toggle {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 10px);
    right: 16px;
    z-index: 260;
    color: var(--ql-ink, #1a1714);
    pointer-events: auto;
  }

  .site-menu {
    position: fixed;
    inset: 0;
    z-index: 240;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #fafafa;
    box-shadow: none;
    transform: translate3d(0, -100%, 0);
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 1.05s cubic-bezier(0.22, 0.82, 0.12, 1),
      visibility 1.05s cubic-bezier(0.22, 0.82, 0.12, 1);
  }

  html.nav-open .site-menu {
    background: #fafafa;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu-shell {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    background: #fafafa;
  }

  .mobile-menu-top {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:
      calc(env(safe-area-inset-top, 0px) + 58px)
      20px
      28px;
    text-align: center;
    background: #fafafa;
    border-bottom: 1px solid rgba(26, 23, 20, 0.08);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-menu-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }

  .mobile-menu-brand img,
  .mobile-menu-logo {
    display: block;
    height: 52px;
    width: auto;
    margin: 0 auto;
    filter: none;
  }

  .mobile-menu-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
  }

  .mobile-menu-cta,
  .mobile-menu-cta--ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(26, 23, 20, 0.12);
    border-radius: 999px;
    background: #ffffff;
    color: var(--ql-ink, #1a1714);
    font-size: 10.8px;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .mobile-menu-body {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
    padding: 20px 24px 12px;
    background: #fafafa;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-menu-footer {
    flex-shrink: 0;
    padding: 12px 24px max(20px, env(safe-area-inset-bottom));
    background: #fafafa;
    border-top: 1px solid rgba(26, 23, 20, 0.08);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 0 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ql-ink-soft, #5b5650);
    font-family: inherit;
    font-size: 12.6px;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: color 160ms ease, opacity 160ms ease;
  }

  .mobile-menu-close:hover {
    color: var(--ql-ink, #1a1714);
    opacity: 0.92;
  }

  .site-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
    align-self: stretch;
  }

  .site-nav a {
    display: block;
    padding: 18px 12px;
    border-bottom: 1px solid rgba(26, 23, 20, 0.08);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--ql-ink-soft, #5b5650);
  }

  html.nav-open .site-menu .site-nav a,
  html.nav-open .site-menu .ql-nav-links a {
    padding: 18px 12px;
    border-left: 0;
    border-bottom: 1px solid rgba(26, 23, 20, 0.08);
    color: var(--ql-ink-soft, #5b5650);
    opacity: 1;
    background: transparent;
    text-align: center;
    transition: color 160ms ease;
  }

  html.nav-open .site-menu .site-nav a.is-active,
  html.nav-open .site-menu .ql-nav-links a.is-active,
  html.nav-open #site-menu a.is-active {
    color: var(--ql-ink, #1a1714);
    font-weight: 600;
    letter-spacing: 0.08em;
    background: transparent;
    border-top: 0;
    border-bottom: 1px solid rgba(26, 23, 20, 0.08);
    border-left: 0;
    box-shadow: none;
  }

  .site-nav a.is-active,
  .site-nav .is-active {
    border-bottom: 1px solid rgba(23, 19, 19, 0.08);
  }

  .site-nav a::after {
    display: none;
  }

  html.nav-open .fixed-cta {
    display: none;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }

  .header-actions .pill,
  .header-actions .badge-link,
  .header-actions .social-link,
  .header-actions .naver-link {
    display: inline-flex;
    width: 100%;
    min-width: 0;
    height: 40px;
    font-size: 10.8px;
  }

  .header-actions .badge-link,
  .header-actions .social-link,
  .header-actions .naver-link {
    grid-column: 1 / -1;
  }
}

/* FEATURE section — keep frame size, fill image height (02, 03 only) */
.home-service-flow .home-row .image-support,
.home-service-flow .home-row .image-experience {
  padding: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-origin: border-box;
  background-clip: border-box;
  background-position: center;
}

.home-service-flow .home-row .image-network {
  padding: 18px;
  background-size: contain;
  background-position: center;
  background-origin: content-box;
  background-clip: padding-box;
}

/* Page transitions + scroll reveal */
.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--modern-canvas, #f8f7f4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.72s cubic-bezier(0.4, 0, 0.2, 1);
}

html.page-motion-init.page-is-entering .page-curtain {
  opacity: 1;
}

html.page-is-entered .page-curtain {
  opacity: 0;
  transition-delay: 0.1s;
}

html.page-is-exiting .page-curtain {
  opacity: 1;
  transition-delay: 0s;
}

html.page-is-exiting main {
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

html.page-is-entered main {
  opacity: 1;
}

.hero-piece {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  animation: heroPieceIn 1.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-piece-delay {
  animation-delay: 0.28s;
}

.page-hero.hero-enter > * {
  opacity: 0;
  transform: translateY(22px);
  animation: heroPieceIn 1.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.page-hero.hero-enter > h1 {
  animation-delay: 0.16s;
}

@keyframes heroPieceIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.reveal {
  will-change: opacity, transform;
}

.reveal-up,
.reveal-fade,
.reveal-soft,
.reveal-from-left,
.reveal-from-right {
  opacity: 0;
  transition:
    opacity 1.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up {
  transform: translateY(42px);
}

.reveal-fade {
  transform: translateY(24px);
}

.reveal-soft {
  transform: translateY(18px) scale(0.98);
}

.reveal-from-left {
  transform: translateX(-44px);
}

.reveal-from-right {
  transform: translateX(44px);
}

.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

.reveal .image-slot,
.reveal .profile-photo,
.reveal .blog-thumb,
.reveal .blog-detail-cover {
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.14s;
}

.reveal:not(.is-revealed) .image-slot,
.reveal:not(.is-revealed) .profile-photo,
.reveal:not(.is-revealed) .blog-thumb,
.reveal:not(.is-revealed) .blog-detail-cover {
  transform: scale(1.04);
}

.reveal.is-revealed .image-slot,
.reveal.is-revealed .profile-photo,
.reveal.is-revealed .blog-thumb,
.reveal.is-revealed .blog-detail-cover {
  transform: none;
}

/* Mobile section title scale-down (all pages) */
@media (max-width: 900px) {
  .page-hero h1,
  .about-hero h1 {
    font-size: clamp(21.6px, 6vw, 30.6px);
  }

  .home-hero-copy h1 {
    font-size: clamp(23.4px, 6vw, 36px);
  }

  .home-intro-copy h2,
  .page-lead h2,
  .contact-band h2,
  .service-plan-lead h2 {
    font-size: clamp(16.2px, 4.4vw, 21.6px);
  }

  .home-row h3,
  .flow-item .process-copy h3,
  .home-service-flow .home-row h3,
  .home-service-flow .home-row:nth-of-type(2) h3,
  .home-cta-cards strong {
    font-size: clamp(15.3px, 3.6vw, 19.8px);
  }

  .home-company h2 {
    font-size: clamp(21.6px, 5.2vw, 30.6px);
  }

  .home-company-lead {
    font-size: clamp(14.4px, 3.2vw, 18px);
  }

  .about-message-copy h2,
  .about-value-card h2,
  .about-value-title,
  .visual-copy h2,
  .about-visual-message h2,
  .about-visual-message h3 {
    font-size: clamp(18px, 4.4vw, 24.3px);
  }

  .plan-summary strong {
    font-size: clamp(16.2px, 4vw, 23.4px);
  }

  .service-price-panel h3,
  .service-price-table strong,
  .service-detail-grid h3,
  .service-note-box h3 {
    font-size: clamp(14.4px, 3.2vw, 18px);
  }

  .faq-item h2 {
    font-size: clamp(12.6px, 2.8vw, 15.3px);
  }

  .blog-card h3,
  .blog-archive-copy h3 {
    font-size: clamp(13.5px, 3vw, 15.3px);
  }

  .blog-detail h1 {
    font-size: clamp(15.3px, 3.6vw, 18px);
  }

  .blog-detail-body h2 {
    font-size: clamp(14.4px, 3.2vw, 16.2px);
  }

  .privacy-policy-item h2,
  .privacy-policy-contact h2 {
    font-size: 12.6px;
  }

  .contact-form-intro-title {
    font-size: clamp(13.5px, 3vw, 16.2px);
  }
}

/* Noto Serif KR display titles */
h1,
h2,
h3,
.footer-logo,
.home-hero-copy h1,
.page-hero h1,
.about-hero h1,
.home-intro-copy h2,
.page-lead h2,
.contact-band h2,
.service-plan-lead h2,
.home-company h2,
.about-message-copy h2,
.about-message-copy .about-lead,
.about-value-title,
.plan-summary strong,
.service-price-table strong,
.ticket-table strong,
.home-stats strong,
.campaign-banner span,
.campaign-banner strong,
.faq-item h2,
.privacy-policy-item h2,
.privacy-policy-contact h2,
.blog-detail h1 {
  font-weight: var(--font-display-weight);
}

.home-hero-copy h1,
.page-hero h1,
.about-hero h1 {
  font-weight: var(--font-display-weight-strong);
}

@media (prefers-reduced-motion: reduce) {
  .page-curtain {
    display: none;
  }

  html.page-is-exiting main,
  html.page-is-entered main,
  .hero-piece,
  .page-hero.hero-enter > *,
  .reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   Quiet Luxury (Nobiliaire-inspired) homepage & chrome redesign
   ============================================================ */

.site-header,
.site-header.is-scrolled {
  background: rgba(23, 19, 19, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header::before {
  background: rgba(23, 19, 19, 0.96);
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.68);
}

.site-nav {
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a:hover,
.site-nav .is-active {
  color: var(--modern-rose);
}

@media (max-width: 900px) {
  .site-header .site-nav a {
    color: var(--modern-ink);
  }

  .site-header .site-nav a:hover {
    color: var(--modern-rose);
  }

  html.nav-open .site-menu .site-nav a,
  html.nav-open .site-menu .ql-nav-links a {
    color: var(--ql-ink-soft, #5b5650);
  }

  html.nav-open .site-menu .site-nav a.is-active,
  html.nav-open .site-menu .ql-nav-links a.is-active,
  html.nav-open #site-menu a.is-active {
    color: var(--ql-ink, #1a1714);
  }
}

/* Full-bleed hero, no polaroid card */
.home-hero {
  position: relative;
  display: block;
  min-height: 640px;
  padding: 0;
  overflow: hidden;
  background: var(--modern-dark);
}

.home-hero-polaroid {
  position: absolute;
  z-index: 1;
  inset: 0;
  order: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.home-hero-polaroid .home-hero-image {
  width: 100%;
  height: 100%;
  min-height: 640px;
  border-radius: 0;
  box-shadow: none;
  filter: grayscale(0.9) contrast(1.08) brightness(0.8);
  background-position: 54% 32%;
}

.home-hero-polaroid::after {
  content: "";
  position: absolute;
  inset: 0;
  /*background:
    linear-gradient(0deg, rgba(23, 19, 19, 0.94) 0%, rgba(23, 19, 19, 0.5) 42%, rgba(23, 19, 19, 0.2) 68%, rgba(185, 125, 130, 0.28) 100%),
    linear-gradient(115deg, rgba(23, 19, 19, 0.5) 0%, rgba(44, 38, 34, 0.12) 45%, rgba(185, 125, 130, 0.32) 100%);*/
}

.home-hero-polaroid-caption {
  display: none;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  order: 0;
  max-width: 720px;
  margin: 0;
  padding: clamp(120px, 18vw, 200px) clamp(24px, 7vw, 92px) clamp(56px, 8vw, 88px);
  color: #fbf8f3;
}

.home-hero-copy .section-label {
  color: #f0e6e1;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.home-hero-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
}

.home-hero-copy h1 {
  max-width: none;
  color: #fbf8f3;
  font-size: clamp(30px, 4.1vw, 46px);
  line-height: 1.34;
  letter-spacing: -0.01em;
}

.home-hero-copy > p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.home-hero .primary-button {
  min-width: 0;
}

.home-hero .primary-button {
  display: inline-flex;
  margin-top: 8px;
  color: #fbf8f3;
  background: transparent;
  border: 1px solid rgba(240, 230, 225, 0.55);
  box-shadow: none;
}

@media (max-width: 900px) {
  .home-hero {
    display: block;
    min-height: 560px;
    padding: 0;
    gap: 0;
  }

  .home-hero-polaroid,
  .home-hero-polaroid .home-hero-image {
    width: 100%;
    min-height: 560px;
    margin: 0;
    padding: 0;
    transform: none;
  }

  .home-hero-copy {
    padding: clamp(96px, 22vw, 140px) 22px 48px;
  }
}

@media (max-width: 640px) {
  .home-hero-polaroid,
  .home-hero-polaroid .home-hero-image {
    width: 100%;
    min-height: 480px;
    margin: 0;
    padding: 0;
    transform: none;
  }
}

/* Cohesive duotone treatment across photography */
.image-slot,
.blog-thumb,
.blog-detail-cover,
.profile-photo {
  filter: grayscale(0.55) contrast(1.04) saturate(0.9);
}

/* IBJ official badge (replaces text-only pill) */
.ibj-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.ibj-badge img {
  display: block;
  height: 26px;
  width: auto;
}

.ibj-badge span {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.home-company-inner .ibj-badge {
  margin: 18px auto 0;
}

.home-row .ibj-badge {
  margin-top: 14px;
}

.ibj-badge.on-light {
  border-color: var(--modern-line);
}

.ibj-badge.on-light span {
  color: var(--modern-muted);
}

/* Footer: flush with viewport edge (no card corners) */
.site-footer {
  border-radius: 0;
}

/* Contact band: single centered action after removing duplicate phone */
.contact-band .contact-actions {
  justify-content: center;
}

/* Playfair Display accent — reserved for stat numerals + the About accent line */
.serif-accent {
  display: block;
  margin: 10px 0 4px;
  color: var(--modern-ink);
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
}

.home-stats strong {
  font-family: var(--font-accent);
  font-weight: 500;
  font-style: normal;
  font-variant-numeric: tabular-nums;
}

.process-number {
  margin: 0 0 12px;
  color: var(--modern-rose);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Unified outline button language (replaces gradient fills) */
.primary-button,
.pill-form,
.contact-form button {
  background: transparent;
  background-image: none;
  color: var(--modern-ink);
  border: 1px solid var(--modern-ink);
  box-shadow: none;
  transition: background 160ms ease, color 160ms ease;
}

.primary-button:hover,
.pill-form:hover,
.contact-form button:hover {
  background: var(--modern-ink);
  color: #ffffff;
  box-shadow: none;
}

/* Dark-ground contexts get a light outline instead */
.site-header .pill-form,
.home-hero .primary-button,
.home-service-flow .home-row:nth-of-type(2) .primary-button,
.home-cta-cards a.primary-button {
  color: #fbf8f3;
  border-color: rgba(240, 230, 225, 0.55);
}

.site-header .pill-form:hover,
.home-hero .primary-button:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fbf8f3;
}

/* ql-page mobile typography — fills gaps not covered by home/pages-inner px rules */
@media (max-width: 900px) {
  .ql-page .service-plan-lead h2 {
    font-size: clamp(16.2px, 4.4vw, 21.6px);
  }
}
