:root {
  --cream: #faf6f1;
  --cream-dark: #f0e8de;
  --ink: #2c2420;
  --ink-soft: #5c524c;
  --muted: #8a7f77;
  --rose: #c4786a;
  --rose-deep: #a85d52;
  --sage: #7d8f7a;
  --sage-soft: #e8efe6;
  --sand: #e8d9c8;
  --white: #fffdfb;
  --shadow: 0 14px 40px rgba(44, 36, 32, 0.09);
  --radius: 18px;
  --max: 1120px;
  --font: "Noto Sans KR", system-ui, sans-serif;
  --serif: "Noto Serif KR", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 2.5rem)); margin-inline: auto; }
main { flex: 1; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 36, 32, 0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo { display: flex; align-items: center; gap: 0.7rem; }
.logo-mark { font-size: 1.45rem; }
.logo-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(196, 120, 106, 0.4);
  background: #111;
  flex-shrink: 0;
  image-rendering: auto;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-family: var(--serif); font-size: 1.12rem; }
.logo-text small { font-size: 0.72rem; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 1.35rem; font-size: 0.92rem; font-weight: 500; }
.nav a { color: var(--ink-soft); transition: color 0.2s; }
.nav a:hover, .nav a.active { color: var(--rose-deep); }
.nav a.active { font-weight: 700; }
.nav-cta {
  background: var(--ink); color: var(--white) !important;
  padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.85rem;
}
.nav-cta:hover { background: var(--rose-deep) !important; }
.menu-btn {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 0.4rem; cursor: pointer;
}
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Page hero */
.page-hero {
  padding: 3.2rem 0 2.4rem;
  background:
    radial-gradient(ellipse 70% 80% at 90% 0%, rgba(196,120,106,0.14), transparent 55%),
    linear-gradient(180deg, var(--cream-dark), var(--cream));
  border-bottom: 1px solid rgba(44, 36, 32, 0.05);
}
.page-hero .eyebrow {
  display: inline-block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose); font-weight: 600; margin: 0 0 0.7rem;
}
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 0 0 0.7rem; letter-spacing: -0.02em; line-height: 1.25;
}
.page-hero p { margin: 0; color: var(--ink-soft); max-width: 38em; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.8rem 1.4rem; border-radius: 999px; font-size: 0.94rem; font-weight: 600;
  border: 1.5px solid transparent; cursor: pointer; transition: 0.2s; font-family: inherit;
}
.btn-primary { background: var(--rose); color: #fff; border-color: var(--rose); box-shadow: 0 8px 24px rgba(196,120,106,0.25); }
.btn-primary:hover { background: var(--rose-deep); }
.btn-ghost { background: transparent; border-color: rgba(44,36,32,0.18); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(44,36,32,0.04); }
.btn-full { width: 100%; }

/* Home hero */
.home-hero {
  position: relative; padding: 4.5rem 0 4rem; overflow: hidden;
}
.home-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 88% 15%, rgba(196,120,106,0.2), transparent 55%),
    radial-gradient(ellipse 50% 45% at 8% 80%, rgba(125,143,122,0.15), transparent 50%),
    linear-gradient(165deg, var(--cream), var(--cream-dark));
  z-index: 0;
}
/* 홈 히어로: 우측 패널 없이 한 줄 대문 */
.home-hero-solo .container,
.home-hero .hero-main {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 720px;
}
.home-hero .container {
  position: relative;
  z-index: 1;
}
.hero-logo-wrap {
  margin: 0 0 1.35rem;
  max-width: min(520px, 100%);
}
.hero-brand-logo {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: contain;
  object-position: left center;
  image-rendering: auto;
  filter: none;
}
@media (max-width: 680px) {
  .hero-logo-wrap,
  .hero-brand-logo {
    max-width: min(100%, 92vw);
  }
}
@media (min-width: 1100px) {
  .hero-logo-wrap,
  .hero-brand-logo {
    max-width: 560px;
  }
}

/* 문의·방문 정보: 히어로 하단 가로 배치 */
.home-quick {
  background: var(--white);
  border-top: 1px solid rgba(44, 36, 32, 0.05);
  padding: 3.5rem 0 3.8rem;
}
.home-contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 1.25rem;
  align-items: stretch;
}
.home-quick-inner {
  display: block;
  height: 100%;
  background: var(--cream);
  border: 1px solid rgba(44, 36, 32, 0.07);
  border-radius: 18px;
  padding: 1.4rem 1.35rem 1.35rem;
  box-shadow: 0 8px 24px rgba(44, 36, 32, 0.05);
}
.home-quick-inner-no-photo {
  grid-template-columns: 1fr;
}
.home-quick-info .section-label {
  margin: 0 0 0.4rem;
}
.home-quick-info h2 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin: 0 0 0.9rem;
}
.home-quick-list {
  margin: 0 0 1.1rem !important;
  max-width: none;
}
.home-quick-list li {
  padding: 0.55rem 0 !important;
  font-size: 0.95rem;
  align-items: start;
}
.home-quick-list a {
  color: var(--rose-deep);
  text-decoration: none;
}
.home-quick .panel-links {
  gap: 0.55rem;
  flex-wrap: wrap;
}
.home-map-wrap {
  min-height: 380px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(44, 36, 32, 0.08);
  box-shadow: 0 14px 36px rgba(44, 36, 32, 0.08);
  background: #eef1ee;
  display: flex;
  flex-direction: column;
}
.home-map-stage {
  position: relative;
  flex: 1;
  min-height: 340px;
  overflow: hidden;
  background: linear-gradient(180deg, #eef2ef 0%, #e5ebe6 100%);
}
.home-map {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
  background: #e8ece9;
}
.home-map-pin {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 2;
  background: rgba(255, 253, 251, 0.96);
  border: 1px solid rgba(44, 36, 32, 0.08);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  box-shadow: 0 10px 24px rgba(44, 36, 32, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  pointer-events: none;
  backdrop-filter: blur(8px);
}
.home-map-pin strong {
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
}
.home-map-pin span {
  font-size: 0.72rem;
  color: var(--muted);
}
.home-map-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem;
  background: #fffdfb;
  border-top: 1px solid rgba(44, 36, 32, 0.06);
}
@media (max-width: 900px) {
  .home-map-stage,
  .home-map {
    min-height: 300px;
  }
}

/* 사업자 정보 (사이트 최하단) */
.biz-info {
  width: 100%;
  margin-top: 0.75rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(44, 36, 32, 0.08);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}
.biz-info p {
  margin: 0 0 0.4rem !important;
  font-size: 0.82rem !important;
  color: var(--ink-soft) !important;
}
.biz-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.15rem;
}
.biz-info li {
  font-size: 0.78rem;
  color: var(--muted);
}
.biz-info a {
  color: var(--rose-deep);
  text-decoration: none;
}
.biz-note {
  margin-top: 0.55rem !important;
  font-size: 0.72rem !important;
  opacity: 0.85;
}
.btn-sm {
  padding: 0.55rem 1rem !important;
  font-size: 0.88rem !important;
}
@media (max-width: 900px) {
  .home-contact-grid {
    grid-template-columns: 1fr;
  }
  .home-map,
  .home-map-wrap {
    min-height: 280px;
  }
}
@media (max-width: 680px) {
  .home-quick {
    padding: 2.5rem 0 2.8rem;
  }
  .home-quick .panel-links {
    flex-direction: column;
  }
  .home-quick .panel-links .btn {
    width: 100%;
  }
}

/* 대문 로고: 원본 270px 대비 과도한 확대 줄여 선명도 우선 */
.hero-logo-wrap,
.hero-brand-logo {
  max-width: min(420px, 100%) !important;
}
@media (min-width: 1100px) {
  .hero-logo-wrap,
  .hero-brand-logo {
    max-width: 440px !important;
  }
}
.home-hero h1 {
  font-family: var(--serif); font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1.25; margin: 0 0 1.1rem; letter-spacing: -0.02em;
}
.home-hero h1 em { font-style: normal; color: var(--rose-deep); }
.home-hero .lead { color: var(--ink-soft); font-size: 1.05rem; margin: 0 0 1.6rem; max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.3rem; list-style: none; padding: 0; margin: 0; font-size: 0.88rem; color: var(--ink-soft); }
.hero-meta li::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); margin-right: 0.4rem; vertical-align: middle; }
.hero-panel {
  background: rgba(255,253,251,0.88); border: 1px solid rgba(44,36,32,0.07);
  border-radius: calc(var(--radius) + 6px); padding: 1.6rem; box-shadow: var(--shadow);
}
.hero-panel h2 { font-family: var(--serif); font-size: 1.25rem; margin: 0 0 1rem; }
.hero-brand { text-align: center; }
.hero-brand .section-label { margin-top: 0.85rem; }
.hero-brand h2 { margin-bottom: 0.45rem; }
.hero-brand-desc {
  margin: 0 0 1.1rem; font-size: 0.86rem; color: var(--muted); line-height: 1.55;
}
.hero-brand-desc code {
  font-size: 0.78em; background: var(--cream-dark); padding: 0.1rem 0.35rem; border-radius: 6px;
}
.hero-photo-wrap {
  width: min(220px, 70%);
  margin: 0 auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 12px 32px rgba(44, 36, 32, 0.14);
  background: linear-gradient(145deg, var(--cream-dark), var(--sand));
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-brand .panel-list { text-align: left; }
.hero-brand .panel-links { justify-content: center; }
.panel-list { list-style: none; margin: 0 0 1rem; padding: 0; }
.panel-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.55rem 0; border-bottom: 1px dashed rgba(44,36,32,0.1); font-size: 0.92rem;
}
.panel-list span { color: var(--muted); font-size: 0.82rem; }
.panel-links { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* Sections */
.section { padding: 4rem 0; }
.section-label { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); font-weight: 600; margin: 0 0 0.5rem; }
.section h2 { font-family: var(--serif); font-size: clamp(1.55rem, 3vw, 2.1rem); margin: 0 0 0.8rem; letter-spacing: -0.02em; }
.section-desc { color: var(--ink-soft); margin: 0 0 1.8rem; max-width: 40em; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 2.5rem; }
.section-head .section-desc { margin-inline: auto; }

/* Cards grid */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.info-card, .class-card {
  background: var(--white); border-radius: var(--radius); padding: 1.4rem;
  border: 1px solid rgba(44,36,32,0.06); transition: transform 0.2s, box-shadow 0.2s;
}
.info-card:hover, .class-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.info-card h3, .class-card h3 { font-family: var(--serif); font-size: 1.1rem; margin: 0 0 0.5rem; }
.info-card p, .class-card p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }
.class-card ul { margin: 0.9rem 0 0; padding: 0.9rem 0 0; list-style: none; border-top: 1px solid rgba(44,36,32,0.08); }
.class-card li { font-size: 0.85rem; color: var(--ink-soft); padding: 0.15rem 0 0.15rem 0.9rem; position: relative; }
.class-card li::before { content: "·"; position: absolute; left: 0.1rem; color: var(--rose); font-weight: 700; }
.class-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 600; color: var(--rose-deep);
  background: rgba(196,120,106,0.12); padding: 0.22rem 0.6rem; border-radius: 999px; margin-bottom: 0.65rem;
}
.featured { background: linear-gradient(160deg, #fff, #fdf0ec); border-color: rgba(196,120,106,0.22); }

/* Portfolio */
.filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; align-items: center;
}
.filters button {
  border: 1px solid rgba(44,36,32,0.12); background: var(--white); color: var(--ink-soft);
  border-radius: 999px; padding: 0.45rem 0.95rem; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: 0.15s;
}
.filters button:hover, .filters button.active {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.portfolio-meta { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.2rem; }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
}
.work-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(44,36,32,0.06); display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.work-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.work-thumb {
  aspect-ratio: 4/3; background: linear-gradient(135deg, var(--cream-dark), var(--sand));
  position: relative; overflow: hidden;
}
.work-thumb img { width: 100%; height: 100%; object-fit: cover; }
.work-thumb .placeholder {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 2.4rem; background: linear-gradient(145deg, #f5e6dc, #e8cfc0);
}
.work-body { padding: 1.05rem 1.15rem 1.2rem; display: flex; flex-direction: column; flex: 1; gap: 0.35rem; }
.work-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.tag {
  font-size: 0.72rem; font-weight: 600; padding: 0.18rem 0.55rem; border-radius: 999px;
  background: var(--cream-dark); color: var(--ink-soft);
}
.tag.blog { background: rgba(125,143,122,0.15); color: #4f6a4d; }
.tag.instagram { background: rgba(196,120,106,0.14); color: var(--rose-deep); }
.work-body h3 { font-size: 1rem; margin: 0.2rem 0; line-height: 1.4; font-weight: 600; }
.work-body .excerpt { font-size: 0.86rem; color: var(--muted); margin: 0; flex: 1; line-height: 1.55; }
.work-body .date { font-size: 0.78rem; color: var(--muted); }
.work-body .more {
  margin-top: 0.6rem; font-size: 0.88rem; font-weight: 600; color: var(--rose-deep);
}
.work-body .more:hover { text-decoration: underline; text-underline-offset: 3px; }
.empty-state {
  grid-column: 1 / -1; text-align: center; padding: 3rem 1rem; color: var(--muted);
}

/* Guide list */
.guide-list { display: flex; flex-direction: column; gap: 1.1rem; }
.guide-item {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem;
  background: var(--white); border-radius: var(--radius); padding: 1.25rem 1.3rem;
  border: 1px solid rgba(44,36,32,0.06);
}
.guide-num { font-family: var(--serif); color: var(--rose); font-weight: 700; font-size: 1.1rem; }
.guide-item h3 { margin: 0 0 0.3rem; font-size: 1.05rem; }
.guide-item p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: 1rem; }
.contact-list li { display: grid; grid-template-columns: 5.2rem 1fr; gap: 0.6rem; font-size: 0.95rem; }
.contact-list .label { font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.contact-list a { color: var(--rose-deep); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.contact-form {
  background: var(--white); border-radius: calc(var(--radius) + 4px); padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow); border: 1px solid rgba(44,36,32,0.06);
}
.contact-form h3 { font-family: var(--serif); margin: 0 0 0.35rem; }
.form-note { font-size: 0.8rem; color: var(--muted); margin: 0 0 1.1rem; }
.contact-form label {
  display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.85rem;
  font-weight: 500; color: var(--ink-soft); margin-bottom: 0.9rem;
}
.contact-form input, .contact-form select, .contact-form textarea {
  font-family: inherit; font-size: 0.95rem; padding: 0.7rem 0.85rem;
  border: 1.5px solid rgba(44,36,32,0.12); border-radius: 10px; background: var(--cream); color: var(--ink);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--rose); background: #fff;
}
.form-success {
  margin: 0.8rem 0 0; padding: 0.8rem 1rem; background: var(--sage-soft);
  color: #4f6a4d; border-radius: 10px; font-size: 0.88rem; font-weight: 500;
}
.form-error {
  margin: 0.8rem 0 0; padding: 0.8rem 1rem;
  background: rgba(196, 120, 106, 0.12);
  color: var(--rose-deep); border-radius: 10px; font-size: 0.88rem; font-weight: 500;
}
.form-note a { color: var(--rose-deep); font-weight: 600; }
.contact-form button:disabled {
  opacity: 0.65;
  cursor: wait;
}

/* Kakao contact (no email form) */
.contact-kakao {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}
.kakao-card {
  background: var(--white);
  border: 1px solid rgba(44, 36, 32, 0.07);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
}
.kakao-card h2 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  margin: 0 0 0.75rem;
}
.kakao-lead {
  color: var(--ink-soft);
  margin: 0 0 1rem;
  line-height: 1.65;
}
.kakao-tips {
  margin: 0 0 1.4rem;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.kakao-tips li { margin: 0.25rem 0; }
.btn-kakao {
  background: #fee500 !important;
  color: #191919 !important;
  border-color: #fee500 !important;
  box-shadow: 0 10px 28px rgba(254, 229, 0, 0.35);
  font-weight: 700;
}
.btn-kakao:hover {
  filter: brightness(0.97);
}
.kakao-alt {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.kakao-side h3 {
  font-family: var(--serif);
  margin: 0 0 1rem;
  font-size: 1.2rem;
}
@media (max-width: 900px) {
  .contact-kakao { grid-template-columns: 1fr; }
}

/* Notice banner */
.notice {
  background: rgba(196,120,106,0.1); border: 1px solid rgba(196,120,106,0.22);
  border-radius: 14px; padding: 0.95rem 1.1rem; font-size: 0.9rem; color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.notice strong { color: var(--rose-deep); }

/* About layout */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 2.5rem; align-items: start; }
.about-copy p { color: var(--ink-soft); }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.2rem; }
.about-tags span {
  font-size: 0.8rem; padding: 0.35rem 0.8rem; background: var(--cream-dark);
  border-radius: 999px; color: var(--ink-soft); font-weight: 500;
}

/* Footer */
.site-footer {
  background: var(--cream-dark); padding: 2.2rem 0; border-top: 1px solid rgba(44,36,32,0.06); margin-top: auto;
}
.footer-inner { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: space-between; align-items: flex-start; }
.footer-inner strong { font-family: var(--serif); font-size: 1.05rem; }
.footer-inner p { margin: 0.25rem 0 0; font-size: 0.85rem; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.9rem; font-weight: 500; }
.footer-links a:hover { color: var(--rose-deep); }
.copyright {
  width: 100%; font-size: 0.78rem; color: var(--muted); margin-top: 0.4rem;
  padding-top: 1.1rem; border-top: 1px solid rgba(44,36,32,0.08);
}

/* Home preview strip */
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.preview-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(44,36,32,0.06);
  position: relative;
}
.preview-card .work-thumb { aspect-ratio: 16/10; }
.preview-card .work-body h3 { font-size: 0.95rem; }
.more-row { text-align: center; margin-top: 1.8rem; }

/* 카드 전체 클릭 (원문 링크) */
.work-card, .preview-card { position: relative; }
.card-hit {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}
.work-card .more, .preview-card .more {
  position: relative;
  z-index: 3;
}
.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--cream-dark);
}
.placeholder-text {
  font-size: 1rem !important;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.4;
  background: linear-gradient(145deg, #f0e8de, #e8d9c8) !important;
}
.placeholder-text small {
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--muted);
}
/* 필터: 블로그만 볼 때 안내 */
.work-thumb {
  position: relative;
  background: #efe6db;
}

/* Instagram embed section */
.ig-section {
  background: var(--white);
  border-top: 1px solid rgba(44, 36, 32, 0.06);
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.ig-card {
  background: var(--cream);
  border: 1px solid rgba(44, 36, 32, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(44, 36, 32, 0.04);
  display: flex;
  flex-direction: column;
}
.ig-embed-wrap {
  position: relative;
  width: 100%;
  min-height: 480px;
  background: #faf6f1;
  overflow: hidden;
}
.ig-embed-frame {
  width: 100%;
  min-height: 520px;
  border: 0;
  display: block;
  background: #fff;
}
.ig-meta {
  padding: 1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.ig-meta h3 {
  font-size: 1rem;
  margin: 0.15rem 0;
  line-height: 1.4;
}
.ig-meta .excerpt {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
}
.ig-meta .date {
  font-size: 0.78rem;
  color: var(--muted);
}
.ig-meta .more {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rose-deep);
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .ig-grid { grid-template-columns: 1fr; }
  .ig-embed-wrap, .ig-embed-frame { min-height: 440px; }
}

@media (max-width: 960px) {
  .home-hero .container, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .card-grid, .portfolio-grid, .preview-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .menu-btn { display: flex; }
  .nav {
    position: fixed; inset: 72px 0 auto 0; background: var(--white);
    flex-direction: column; align-items: stretch; padding: 1rem 1.25rem 1.4rem; gap: 0;
    border-bottom: 1px solid rgba(44,36,32,0.08); box-shadow: var(--shadow);
    transform: translateY(-120%); opacity: 0; pointer-events: none; transition: 0.25s ease;
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 0.8rem 0.4rem; border-bottom: 1px solid rgba(44,36,32,0.06); }
  .nav-cta { margin-top: 0.7rem; text-align: center; }
  .card-grid, .portfolio-grid, .preview-grid { grid-template-columns: 1fr; }
  .contact-list li { grid-template-columns: 1fr; gap: 0.15rem; }
}
