@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

:root {
  color-scheme: light;
  --ink: #071330;
  --muted: #536174;
  --line: #dfe5dd;
  --studio-red: #ff443f;
  --studio-red-dark: #e93430;
  --studio-blue: #eef8ff;
  --studio-line: #e8edf3;
  --green: #0c7a22;
  --acid: #91f44b;
  --violet: #8b2cff;
  --gold: #ffd027;
  --soft: #f4f8f2;
  --cream: #fbfcf8;
  --navy: #051434;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.content-protected,
html.content-protected body {
  -webkit-touch-callout: none;
}

html.content-protected body,
html.content-protected body *:not(input):not(textarea):not(select):not([contenteditable="true"]) {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html.content-protected img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--cream);
}

#siteShell {
  min-height: 100%;
}

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

[hidden] {
  display: none !important;
}

.login-screen {
  position: fixed;
  z-index: 30;
  inset: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(3, 199, 90, 0.2), rgba(139, 44, 255, 0.12)),
    rgba(248, 251, 247, 0.94);
  backdrop-filter: blur(10px);
}

.login-card {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(430px, 100%);
  padding: 28px;
  border: 1px solid rgba(7, 19, 48, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(7, 19, 48, 0.14);
}

.login-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.login-logo {
  width: 156px;
  height: auto;
  border-radius: 8px;
  background: #fff;
}

.login-card h1 {
  margin: 4px 0 0;
  font-size: 28px;
  line-height: 1.18;
}

.login-card p {
  margin: 0;
  color: var(--muted);
}

.login-card label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.login-card input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.login-card button {
  min-height: 50px;
  color: #031007;
  border: 0;
  border-radius: 8px;
  background: var(--acid);
  font-size: 16px;
  font-weight: 950;
  cursor: pointer;
}

.login-error {
  padding: 10px 12px;
  color: #9a321a;
  border: 1px solid #d85f3d;
  border-radius: 8px;
  background: #fff0ea;
  font-size: 13px;
  font-weight: 900;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 5vw, 72px);
  height: 96px;
  padding: 0 clamp(24px, 5vw, 86px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(7, 19, 48, 0.13);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  min-width: 220px;
  color: var(--studio-red);
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 950;
  white-space: nowrap;
}

.brand-trial-icon {
  display: block;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-logo {
  display: none;
}

.brand span {
  display: inline-flex;
  align-items: center;
  color: var(--studio-red);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 4.6vw, 72px);
  margin-left: auto;
  font-size: 22px;
  font-weight: 850;
  color: var(--ink);
  letter-spacing: 0;
}

.nav-links a:hover {
  color: var(--studio-red);
}

.site-header .auth-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header .auth-login-link,
.site-header .auth-logout-button {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border-color: var(--studio-line);
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
}

.login-user-badge,
.staff-login-button,
.logout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 57px;
  padding: 0 18px;
  border: 1px solid rgba(7, 19, 48, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  white-space: nowrap;
}

.staff-login-button {
  color: #fff;
  min-width: 174px;
  border-color: #101510;
  border-radius: 999px;
  background: #101510;
  cursor: pointer;
}

.logout-button {
  cursor: pointer;
}

.auth-status {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
  white-space: nowrap;
}

.auth-user,
.auth-status > span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.auth-login-link,
.auth-logout-button,
.auth-status > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid #d9dedb;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.site-header .auth-status {
  flex: 0 0 auto;
  margin-left: 0;
}

.staff-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(48px, 7vw, 78px) clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(3, 199, 90, 0.28), rgba(139, 44, 255, 0.16)),
    var(--ink);
}

.staff-section > div {
  width: min(850px, 100%);
}

.staff-section h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.staff-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.staff-section-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  color: #031007;
  border-radius: 8px;
  background: var(--acid);
  font-weight: 950;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 0;
  display: block;
  overflow: hidden;
  color: #111;
  background: #fff;
  border-top: 1px solid rgba(7, 19, 48, 0.06);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero-bg {
  display: none;
}

.hero-picture {
  display: block;
  position: relative;
  z-index: 1;
}

.hero-main-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.hero-kakao-hit {
  position: absolute;
  z-index: 2;
  left: 4.4%;
  top: 60.3%;
  width: 18%;
  height: 9.8%;
  border-radius: 14px;
}

.hero-kakao-hit:focus-visible {
  outline: 3px solid rgba(255, 68, 63, 0.55);
  outline-offset: 4px;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.hero-logo {
  display: block;
  width: min(260px, 60vw);
  height: auto;
  margin: 0 0 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 22px;
  padding: 0 18px;
  color: #db2f8b;
  border: 1px solid rgba(219, 47, 139, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 36px rgba(224, 83, 151, 0.16);
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 950;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(48px, 6.2vw, 98px);
  line-height: 1.04;
  font-weight: 950;
}

.hero h1 {
  margin: 0;
  color: #431266;
  text-shadow: 0 8px 24px rgba(255, 255, 255, 0.96), 0 16px 40px rgba(212, 68, 151, 0.22);
  white-space: nowrap;
}

.blog-green {
  color: #03c75a;
  text-shadow: 0 8px 22px rgba(255, 255, 255, 0.96), 0 10px 28px rgba(3, 199, 90, 0.24);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.12;
  font-weight: 850;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 800;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
}

.primary-button {
  color: #031007;
  background: var(--acid);
}

.secondary-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.secondary-button.dark {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.ghost-button {
  color: #fff;
  border: 1px solid rgba(145, 244, 75, 0.55);
  background: rgba(145, 244, 75, 0.1);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.section-light {
  background: #fff;
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.column-page .column-curation-hero {
  width: min(980px, 100%);
  margin-bottom: 54px;
  padding: clamp(42px, 6vw, 64px) clamp(20px, 4vw, 44px);
  border: 1px solid #e7edf4;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(127, 240, 66, 0.12), transparent 38%),
    #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.column-kicker-row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.column-kicker-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: #f1f5f9;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.column-page .column-curation-hero .eyebrow {
  display: block;
  margin: 0 0 18px;
  color: #087a2f;
  font-size: 15px;
  font-weight: 950;
}

.column-page .column-curation-hero h1 {
  width: min(900px, 100%);
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(42px, 6.2vw, 82px);
  font-weight: 950;
  line-height: 1.12;
  word-break: keep-all;
}

.column-page .column-curation-hero p:not(.eyebrow) {
  width: min(760px, 100%);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 760;
}

.align-left {
  margin: 0;
  text-align: left;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.issue-card,
.process-step {
  border-radius: 8px;
  padding: 26px;
}

.issue-card {
  min-height: 220px;
  border: 1px solid var(--line);
  background: #fff;
}

.icon-line {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.issue-card p,
.process-step p,
.service-card p,
.strategy-item span,
.contact-section p {
  color: var(--muted);
  line-height: 1.7;
}

.strategy-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.strategy-list {
  display: grid;
  gap: 14px;
}

.strategy-item {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) 1fr;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.strategy-item strong {
  color: var(--green);
}

.profile-preview {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.profile-preview-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 340px;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.profile-preview-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

.profile-preview-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.75;
}

.profile-preview-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.profile-preview-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(3, 199, 90, 0.1);
  color: #047645;
  font-size: 13px;
  font-weight: 950;
}

.profile-preview-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 19, 48, 0.08);
}

.profile-preview-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  background: #e5e9ef;
}

.profile-preview-card div {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.profile-preview-card strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 950;
}

.profile-preview-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 750;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.service-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(139, 44, 255, 0.08), rgba(255, 255, 255, 0) 46%),
    #fff;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 24px;
  padding: 0 12px;
  color: #40115f;
  border-radius: 999px;
  background: rgba(139, 44, 255, 0.12);
  font-size: 13px;
  font-weight: 950;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, 100%);
  margin: 28px auto 0;
  padding: 24px 26px;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(139, 44, 255, 0.34), rgba(255, 208, 39, 0.12)),
    var(--navy);
}

.section-cta p {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}

.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section-dark {
  color: #fff;
  background: var(--navy);
}

.section-dark .section-heading p:not(.eyebrow),
.section-dark .process-step p {
  color: rgba(255, 255, 255, 0.72);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.process-step {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.process-step span {
  display: block;
  margin-bottom: 34px;
  color: var(--acid);
  font-size: 42px;
  font-weight: 950;
}

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

.column-card {
  display: grid;
  gap: 8px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.column-card[class*="column-theme-"] {
  position: relative;
  overflow: hidden;
}

.column-card[class*="column-theme-"]::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--green);
}

.column-card.column-theme-copy::before {
  background: linear-gradient(180deg, #c026d3, #fb7185);
}

.column-card.column-theme-recovery::before {
  background: linear-gradient(180deg, var(--green), var(--acid));
}

.column-card.column-theme-guide::before {
  background: linear-gradient(180deg, #061a40, #ffd027);
}

.column-card.column-theme-insight::before {
  background: linear-gradient(180deg, #2563eb, #22d3ee);
}

.column-card.column-theme-cost::before {
  background: linear-gradient(180deg, #ea580c, #facc15);
}

.column-card.column-theme-missing::before {
  background: linear-gradient(180deg, #dc2626, #f97316);
}

.column-card.column-theme-copy time,
.column-detail.column-theme-copy time,
.column-card.column-theme-copy .column-more {
  color: #c026d3;
}

.column-card.column-theme-guide time,
.column-detail.column-theme-guide time,
.column-card.column-theme-guide .column-more {
  color: #061a40;
}

.column-card.column-theme-insight time,
.column-detail.column-theme-insight time,
.column-card.column-theme-insight .column-more {
  color: #2563eb;
}

.column-card.column-theme-cost time,
.column-detail.column-theme-cost time,
.column-card.column-theme-cost .column-more {
  color: #c2410c;
}

.column-card.column-theme-missing time,
.column-detail.column-theme-missing time,
.column-card.column-theme-missing .column-more {
  color: #dc2626;
}

.column-card:hover,
.column-card:focus {
  border-color: rgba(12, 122, 34, 0.34);
  box-shadow: 0 16px 34px rgba(7, 19, 48, 0.08);
  outline: 0;
  transform: translateY(-2px);
}

.column-card time {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.column-card h3 {
  margin: 0;
  font-size: 22px;
}

.column-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.column-more {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.column-detail-wrap {
  width: min(980px, 100%);
  margin: 0 auto;
}

.column-detail {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.column-detail time {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.column-detail h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 40px);
}

.column-detail section {
  margin-top: 34px;
}

.column-detail section:first-of-type {
  margin-top: 22px;
}

.column-detail h4 {
  position: relative;
  margin: 0 0 18px;
  padding: 0 0 14px 0;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 950;
  line-height: 1.32;
}

.column-detail h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(92px, 42%);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--acid));
}

.column-detail.column-theme-copy h4 {
  color: #4a044e;
}

.column-detail.column-theme-copy h4::after {
  background: linear-gradient(90deg, #c026d3, #fb7185);
}

.column-detail.column-theme-recovery h4 {
  color: #052016;
}

.column-detail.column-theme-recovery h4::after {
  background: linear-gradient(90deg, var(--green), var(--acid));
}

.column-detail.column-theme-guide h4 {
  color: #061a40;
}

.column-detail.column-theme-guide h4::after {
  background: linear-gradient(90deg, #061a40, #ffd027);
}

.column-detail.column-theme-insight h4 {
  color: #082f49;
}

.column-detail.column-theme-insight h4::after {
  background: linear-gradient(90deg, #2563eb, #22d3ee);
}

.column-detail.column-theme-cost h4 {
  color: #431407;
}

.column-detail.column-theme-cost h4::after {
  background: linear-gradient(90deg, #ea580c, #facc15);
}

.column-detail.column-theme-missing h4 {
  color: #450a0a;
}

.column-detail.column-theme-missing h4::after {
  background: linear-gradient(90deg, #dc2626, #f97316);
}

.column-case-warning,
.column-case-question {
  display: grid;
  gap: 8px;
  width: min(100%, 760px);
  margin: 30px auto 22px;
  text-align: center;
  font-weight: 900;
  line-height: 1.65;
}

.column-case-warning {
  color: #ff1f1f;
}

.column-case-warning strong {
  font-size: clamp(26px, 3vw, 36px);
}

.column-case-warning span,
.column-case-warning em {
  font-size: clamp(18px, 2vw, 24px);
}

.column-case-warning em {
  font-style: normal;
}

.column-case-question {
  color: #00a651;
  font-size: clamp(18px, 2vw, 24px);
}

.column-case-image {
  width: min(100%, 760px);
  margin: 22px auto;
}

.column-case-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.column-case-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.column-case-image-large {
  width: min(100%, 640px);
}

.column-case-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 820px);
  margin: 24px auto 12px;
  border: 1px solid #d7d7d7;
  background: #fff;
}

.column-case-pair .column-case-image {
  width: 100%;
  margin: 0;
  padding: 18px;
}

.column-case-pair .column-case-image + .column-case-image {
  border-left: 1px solid #d7d7d7;
}

.column-case-pair img {
  border-radius: 0;
}

.column-case-caption {
  margin: 0 auto 26px !important;
  color: #009b5a !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  text-align: center;
}

.column-case-recovery {
  margin: 40px auto 22px !important;
  color: #1d36ff !important;
  font-size: 18px !important;
  font-weight: 950 !important;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.column-case-image-chat {
  width: min(100%, 560px);
}

.column-case-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 42px auto 8px;
  color: #555;
  font-size: 28px;
  font-weight: 900;
}

.column-case-divider::before,
.column-case-divider::after {
  width: 70px;
  height: 1px;
  background: #aaa;
  content: "";
}

.column-ending-notice {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(100%, 820px);
  margin: 52px auto 0;
  color: var(--ink);
}

.column-ending-notice p {
  margin: 0;
  line-height: 1.75;
  word-break: keep-all;
}

.column-ending-notice .notice-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
}

.column-ending-notice .notice-main {
  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
}

.column-ending-notice .notice-main strong {
  color: #087a2f;
  font-weight: 950;
}

.column-ending-notice .notice-protect {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

.notice-design-01 {
  padding: 28px;
  border: 2px solid #89ef43;
  border-radius: 12px;
  background: linear-gradient(135deg, #f4ffe9 0%, #fff 58%);
}

.notice-design-01 .notice-accent {
  background: #08153b;
  color: #fff;
}

.notice-design-01 .notice-protect {
  border-top: 1px dashed #b8dcc2;
  padding-top: 12px;
}

.notice-design-03 {
  padding: 30px;
  border-radius: 14px;
  background: #061339;
  color: #fff;
}

.notice-design-03 .notice-accent {
  background: #7ff042;
  color: #061339;
}

.notice-design-03 .notice-main,
.notice-design-03 .notice-main strong {
  color: #fff;
}

.notice-design-03 .notice-protect {
  color: rgba(255, 255, 255, 0.76);
}

.notice-design-04 {
  grid-template-columns: minmax(150px, 220px) 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid #d9e1e9;
  border-radius: 12px;
  background: #fff;
}

.notice-design-04 .notice-accent {
  display: grid;
  align-content: center;
  width: auto;
  min-height: 100%;
  padding: 24px;
  border-radius: 0;
  background: #f2fbea;
  color: #0b5d2a;
  font-size: 20px;
}

.notice-design-04 .notice-accent::after {
  display: block;
  margin-top: 8px;
  color: #5b6b79;
  font-size: 13px;
  content: "유가지니 마케팅";
}

.notice-design-04 .notice-copy {
  padding: 24px 28px;
}

.notice-design-05 {
  padding: 28px;
  border: 1px solid #f5ccd9;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff7fb, #fff 52%, #f7fff0);
}

.notice-design-05 .notice-accent {
  background: #ffe4ef;
  color: #be185d;
}

.notice-design-06 {
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 26px;
  border: 1px solid #dfe7f2;
  border-radius: 10px;
  background: #f8fafc;
}

.notice-design-06 .notice-accent {
  order: 2;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: #061339;
  color: #7ff042;
  font-size: 22px;
}

.notice-design-06 .notice-copy {
  order: 1;
}

.notice-design-07 {
  padding: 30px;
  border: 3px solid transparent;
  border-radius: 0;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #7ff042, #2444ff, #ff4b45) border-box;
}

.notice-design-07 .notice-accent {
  background: #ecfdf5;
  color: #047857;
}

.notice-design-08 {
  padding: 28px;
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e5e7eb, inset 0 54px 0 #f1f5f9;
}

.notice-design-08 .notice-accent {
  margin-bottom: 4px;
  background: #061339;
  color: #fff;
}

.notice-design-08 .notice-protect {
  display: inline-block;
  padding: 9px 12px;
  border-radius: 8px;
  background: #f3f4f6;
}

.notice-design-09 {
  padding: 34px 30px 30px;
  border: 1px solid #d9f99d;
  border-radius: 14px;
  background: #fff;
}

.notice-design-09::before {
  position: absolute;
  top: 0;
  left: 30px;
  width: 128px;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: #7ff042;
  content: "";
}

.notice-design-09 .notice-accent {
  border: 1px solid #bbf7d0;
  color: #15803d;
}

.notice-design-10 {
  gap: 16px;
  padding: 28px;
  border: 1px solid #c7d2fe;
  border-radius: 16px;
  background: #f8fbff;
}

.notice-design-10 .notice-accent {
  display: none;
}

.notice-design-10 .notice-main {
  padding-left: 18px;
  border-left: 5px solid #335cff;
}

.notice-design-10 .notice-protect {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.notice-design-10 .notice-protect::before {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 950;
  content: "C";
}

.column-detail p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.82;
}

.column-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-bottom: 22px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.column-back:hover {
  color: var(--green);
  background: #f7fbf3;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(52px, 7vw, 86px) clamp(20px, 5vw, 72px);
  color: #fff;
  background: #071307;
}

.contact-section > div {
  width: min(830px, 100%);
}

.contact-section h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.contact-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 0 30px;
  color: #031007;
  background: var(--acid);
  border-radius: 8px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 950;
  white-space: nowrap;
}

.contact-actions {
  margin-top: 22px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: #031007;
  background: var(--acid);
  border-radius: 8px;
  font-weight: 950;
}

.contact-button.outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  color: #536174;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
  border-top: 1px solid var(--studio-line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) 1.45fr;
  gap: clamp(44px, 7vw, 96px);
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
  padding: clamp(54px, 6vw, 74px) 0 46px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 22px;
}

.footer-logo {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  width: fit-content;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.footer-logo span {
  color: var(--studio-red);
}

.footer-logo i {
  width: 9px;
  height: 9px;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--studio-red);
  box-shadow: 0 0 0 6px rgba(255, 68, 63, 0.12);
}

.footer-brand p {
  max-width: 470px;
  margin: 0;
  color: #536174;
  font-size: 16px;
  line-height: 1.8;
}

.footer-info {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}

.footer-info div {
  display: flex;
  gap: 12px;
  min-width: 0;
}

.footer-info dt {
  width: 42px;
  flex: 0 0 42px;
  color: #8a96a7;
  font-weight: 800;
}

.footer-info dd {
  margin: 0;
  color: var(--ink);
}

.site-footer a {
  color: inherit;
}

.site-footer a:hover {
  color: var(--studio-red);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  border-left: 1px solid #dbe6ef;
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 180px;
  padding-left: clamp(24px, 3vw, 38px);
  border-right: 1px solid #dbe6ef;
}

.footer-nav h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.footer-nav a {
  width: fit-content;
  color: #6b7688;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-nav a:hover {
  color: var(--studio-red);
  transform: translateX(2px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 98px;
  padding: 0 max(40px, calc((100% - 1500px) / 2));
  border-top: 1px solid #dbe6ef;
  background: #ffffff;
}

.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: #344154;
  font-size: 14px;
  font-weight: 850;
}

.footer-bottom p {
  margin: 0;
  color: #8a96a7;
  font-size: 13px;
  white-space: nowrap;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--studio-red);
  border-radius: 999px;
  background: #fff2f1;
  font-size: 12px;
  font-weight: 950;
  transition: background 0.18s ease, transform 0.18s ease;
}

.footer-social a:hover {
  color: #fff;
  background: var(--studio-red);
  transform: translateY(-2px);
}

.quick-menu {
  position: fixed;
  z-index: 12;
  right: 24px;
  left: auto;
  top: auto;
  bottom: 24px;
  display: grid;
  width: 124px;
  overflow: hidden;
  border: 1px solid rgba(255, 68, 63, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 22px 42px rgba(7, 19, 48, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  transform: none;
  transition: width 0.22s ease, height 0.22s ease, border-radius 0.22s ease, box-shadow 0.22s ease;
}

.quick-menu-toggle {
  display: grid;
  place-items: center;
  min-height: 38px;
  color: var(--studio-red);
  border: 0;
  border-bottom: 1px solid rgba(255, 68, 63, 0.14);
  background:
    linear-gradient(145deg, #fff 0%, #fff4f3 100%);
  cursor: pointer;
}

.quick-menu-toggle span {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background:
    linear-gradient(145deg, #ff5b56 0%, var(--studio-red) 100%);
  box-shadow:
    inset 0 -4px 8px rgba(118, 8, 5, 0.18),
    0 7px 14px rgba(255, 68, 63, 0.2);
}

.quick-menu-toggle span::before,
.quick-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 8px;
  width: 10px;
  height: 3px;
  border-radius: 99px;
  background: #fff;
  transition: transform 0.2s ease;
}

.quick-menu-toggle span::before {
  top: 9px;
  transform: rotate(35deg);
}

.quick-menu-toggle span::after {
  bottom: 9px;
  transform: rotate(-35deg);
}

.quick-menu.is-collapsed {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  border-color: rgba(255, 68, 63, 0.32);
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, #ff6863 0%, var(--studio-red) 58%, #d9231f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -10px 16px rgba(129, 13, 10, 0.16),
    0 16px 30px rgba(255, 68, 63, 0.3);
}

.quick-menu.is-collapsed strong,
.quick-menu.is-collapsed a {
  display: none;
}

.quick-menu.is-collapsed .quick-menu-toggle {
  min-height: 78px;
  color: #fff;
  border-bottom: 0;
  background: transparent;
}

.quick-menu.is-collapsed .quick-menu-toggle span {
  display: none;
}

.quick-menu.is-collapsed .quick-menu-toggle::after {
  content: "QUICK\A MENU";
  white-space: pre;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
}

.quick-menu.is-collapsed .quick-menu-toggle span::before {
  transform: rotate(-35deg);
}

.quick-menu.is-collapsed .quick-menu-toggle span::after {
  transform: rotate(35deg);
}

@media (max-width: 1320px) {
  .quick-menu {
    right: 18px;
    left: auto;
    bottom: 18px;
    width: 124px;
    grid-template-columns: 1fr;
  }

  .quick-menu strong,
  .quick-menu a {
    min-height: 74px;
  }
}

.quick-menu strong {
  display: grid;
  place-items: center;
  min-height: 58px;
  color: var(--ink);
  background:
    linear-gradient(145deg, #fff 0%, #fff4f3 100%);
  border-bottom: 1px solid rgba(255, 68, 63, 0.12);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.quick-menu a {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-height: 86px;
  padding: 12px 8px;
  color: var(--ink);
  border-top: 1px solid rgba(7, 19, 48, 0.09);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.quick-menu a:hover {
  color: var(--studio-red);
  background: #fff8f7;
  transform: translateY(-1px);
}

.quick-menu a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  border: 0;
  border-radius: 12px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, #3cff99 0%, #03c75a 58%, #079447 100%);
  box-shadow:
    inset 0 -12px 16px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 12px 22px rgba(7, 19, 48, 0.2);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0;
  text-align: center;
  line-height: 1;
}

.quick-menu a:nth-of-type(1) span {
  color: #fff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, #31f486 0%, #03c75a 55%, #079447 100%);
  font-family: Arial, sans-serif;
  font-size: 24px;
}

.quick-menu .quick-kakao span {
  position: relative;
  z-index: 0;
  overflow: hidden;
  width: 44px;
  height: 44px;
  color: #fee500;
  border-radius: 12px;
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 32%),
    linear-gradient(145deg, #fff35d 0%, #ffd900 54%, #e4b700 100%);
  font-size: 13px;
  box-shadow:
    inset 0 -11px 16px rgba(125, 98, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 12px 22px rgba(7, 19, 48, 0.22);
}

.quick-menu .quick-kakao span::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 8px;
  top: 12px;
  width: 29px;
  height: 20px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 32%),
    linear-gradient(145deg, #342722 0%, #1e1715 58%, #0c0807 100%);
  box-shadow:
    inset 0 -6px 8px rgba(0, 0, 0, 0.28),
    0 4px 8px rgba(76, 55, 0, 0.18);
}

.quick-menu .quick-kakao span::after {
  content: "톡";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fee500;
  font-size: 13px;
  font-weight: 950;
}

.quick-menu a:nth-of-type(3) span {
  color: #fff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, #35ef8a 0%, #03c75a 52%, #078f43 100%);
  font-size: 12px;
}

/* 2026-07 redesign: red studio lower sections */
.section:not(.section-dark),
.profile-preview {
  background:
    linear-gradient(90deg, #fff 0 58%, rgba(238, 248, 255, 0.72) 58% 100%);
}

.section-heading .eyebrow,
.profile-preview .eyebrow,
.column-page .column-curation-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border: 2px solid var(--studio-red);
  border-radius: 10px;
  color: var(--studio-red);
  background: #fff;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0;
}

.section-heading h2,
.profile-preview-copy h2,
.column-page .column-curation-hero h1 {
  position: relative;
  color: #111;
  font-weight: 950;
}

.section-heading h2::after,
.profile-preview-copy h2::after,
.column-page .column-curation-hero h1::after,
.profile-section .section-head h2::after {
  content: "";
  display: block;
  width: min(340px, 72%);
  height: 6px;
  margin-top: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--studio-red), var(--studio-red)),
    linear-gradient(90deg, transparent, transparent);
  box-shadow: 22px 9px 0 -3px var(--studio-red);
  transform: rotate(-1deg);
}

.issue-card,
.service-card,
.strategy-item,
.profile-preview-card,
.column-card {
  border-color: var(--studio-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.08);
}

.issue-card,
.service-card {
  min-height: 245px;
  padding: 28px;
}

.icon-line,
.service-tag {
  color: var(--studio-red);
  background: #fff1f1;
}

.icon-line {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: var(--studio-red);
  background: #edf7ff;
  font-size: 18px;
}

.issue-card h3,
.service-card h3,
.strategy-item strong {
  color: #111;
  font-weight: 950;
}

.strategy-item {
  min-height: 86px;
  border-radius: 16px;
}

.strategy-item strong {
  color: var(--studio-red-dark);
}

.profile-preview {
  border-top: 1px solid var(--studio-line);
  border-bottom: 1px solid var(--studio-line);
}

.profile-preview-inner {
  grid-template-columns: minmax(0, 1fr) 390px;
}

.profile-preview-copy h2 {
  max-width: 620px;
  font-size: clamp(42px, 5.6vw, 66px);
}

.profile-preview-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.profile-preview-card::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 84px;
  height: 64%;
  border-radius: 50%;
  background: #eaf7ff;
  z-index: 0;
}

.profile-preview-card img {
  position: relative;
  z-index: 1;
  width: min(340px, 92%);
  margin: 0 auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  background: transparent;
}

.profile-preview-card div {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 20px;
  border: 1px solid var(--studio-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.08);
}

.profile-preview-points span {
  border-radius: 14px;
  color: var(--studio-red-dark);
  background: #fff;
  border: 1px solid var(--studio-line);
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.06);
}

.primary-button,
.contact-button,
.section-cta .primary-button {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 30%),
    linear-gradient(145deg, #ff6b66 0%, var(--studio-red) 48%, #d51f1a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -10px 18px rgba(129, 13, 10, 0.18),
    0 16px 30px rgba(255, 68, 63, 0.3);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 22px;
}

.primary-button:hover,
.contact-button:hover,
.section-cta .primary-button:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -10px 18px rgba(129, 13, 10, 0.16),
    0 20px 34px rgba(255, 68, 63, 0.34);
}

.kakao-button {
  gap: 8px;
  border-color: #f4d23d;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 32%),
    linear-gradient(145deg, #fff176 0%, #fee500 50%, #e1bd00 100%);
  color: #191919;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    inset 0 -10px 18px rgba(128, 105, 0, 0.16),
    0 16px 30px rgba(254, 229, 0, 0.32);
}

.contact-button.outline.kakao-button {
  color: #191919;
  border-color: #f4d23d;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 32%),
    linear-gradient(145deg, #fff176 0%, #fee500 50%, #e1bd00 100%);
}

.contact-button-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 36%),
    linear-gradient(145deg, #26324c 0%, #071330 100%);
  box-shadow:
    inset 0 -7px 10px rgba(0, 0, 0, 0.22),
    0 7px 14px rgba(7, 19, 48, 0.2);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
}

.kakao-icon {
  position: relative;
  z-index: 0;
  overflow: hidden;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  color: transparent;
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 32%),
    linear-gradient(145deg, #fff35d 0%, #ffd900 54%, #e4b700 100%);
}

.kakao-icon::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 7px;
  top: 10px;
  width: 23px;
  height: 16px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 32%),
    linear-gradient(145deg, #342722 0%, #1e1715 58%, #0c0807 100%);
  box-shadow:
    inset 0 -5px 7px rgba(0, 0, 0, 0.28),
    0 4px 8px rgba(76, 55, 0, 0.18);
}

.kakao-icon::after {
  content: "톡";
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fee500;
  font-size: 12px;
  font-weight: 950;
}

.service-card {
  background: #fff;
}

.service-tag {
  min-height: 34px;
  border-radius: 10px;
  font-size: 14px;
}

.studio-detail-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 22px auto 0;
}

.studio-detail-board article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--studio-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.08);
}

.studio-detail-board span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 11px;
  border-radius: 9px;
  color: var(--studio-red-dark);
  background: #fff1f1;
  font-size: 13px;
  font-weight: 950;
}

.studio-detail-board h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.32;
  font-weight: 950;
}

.studio-detail-board p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 650;
}

.section-cta,
.contact-section {
  border: 1px solid #cfe9fb;
  border-radius: 24px;
  background: linear-gradient(90deg, #f1f9ff 0%, #fff 100%);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.08);
}

.section-cta p,
.contact-section p {
  color: #333941;
}

.section-dark {
  background: #f1f9ff;
  color: var(--ink);
}

.section-dark .section-heading p:not(.eyebrow),
.section-dark .process-step p {
  color: var(--muted);
}

.process-step {
  position: relative;
  border-color: var(--studio-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.08);
}

.process-step span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--studio-red);
  background: #edf7ff;
  font-size: 24px;
}

.process-step h3 {
  color: #111;
}

.column-page .section-light {
  background:
    linear-gradient(90deg, #fff 0 58%, rgba(238, 248, 255, 0.75) 58% 100%);
}

.column-page .column-curation-hero {
  position: relative;
  width: min(1080px, 100%);
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(16, 24, 40, 0.08);
}

.column-kicker-row span {
  border-radius: 10px;
  color: var(--studio-red-dark);
  background: #fff1f1;
}

.column-page .column-curation-hero p:not(.eyebrow) {
  color: #3b4048;
  font-weight: 700;
}

.column-list {
  width: min(1080px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.column-card {
  min-height: 250px;
  padding: 22px;
  border-radius: 18px;
}

.column-card[class*="column-theme-"]::before {
  inset: 0 0 auto 0;
  width: 100%;
  height: 5px;
  background: var(--studio-red);
}

.column-card time,
.column-more,
.column-detail time {
  color: var(--studio-red-dark) !important;
}

.column-card h3 {
  font-size: 23px;
  line-height: 1.35;
  font-weight: 950;
}

.column-card:hover,
.column-card:focus {
  border-color: rgba(255, 68, 63, 0.28);
}

.column-detail {
  border-radius: 24px;
  border-color: var(--studio-line);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
}

.column-detail h4::after,
.column-detail[class*="column-theme-"] h4::after {
  background: var(--studio-red);
  box-shadow: 20px 8px 0 -3px var(--studio-red);
  transform: rotate(-1deg);
}

.column-detail[class*="column-theme-"] h4 {
  color: #111;
}

.column-ending-notice {
  border-radius: 22px;
  border-color: #cfe9fb;
  background: linear-gradient(90deg, #f1f9ff 0%, #fff 100%);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .login-user-badge {
    display: none;
  }

  .hero-bg {
    display: none;
  }

  .issue-grid,
  .service-grid,
  .studio-detail-board,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strategy-layout,
  .profile-preview-inner,
  .contact-section,
  .staff-section,
  .section-cta {
    grid-template-columns: 1fr;
  }

  .section-cta {
    display: grid;
    justify-items: start;
  }

  .contact-number {
    justify-self: start;
  }

  .column-detail {
    width: min(860px, 100%);
    padding: 26px;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 92px;
    gap: 12px;
    padding: 0 16px;
  }

  .column-page {
    display: block;
  }

  .column-body .site-header {
    height: 64px;
    justify-content: space-between;
    padding: 0 12px;
  }

  .column-body .brand {
    min-width: 0;
  }

  .column-body .brand-logo {
    width: 96px;
    height: 54px;
  }

  .column-body .auth-status {
    gap: 6px;
  }

  .column-body .auth-login-link,
  .column-body .auth-logout-button,
  .column-body .auth-status > button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }

  .column-body .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .column-detail {
    width: 100%;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .column-detail h3 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .column-detail h4 {
    font-size: clamp(21px, 6.5vw, 27px);
  }

  .brand {
    gap: 8px;
    min-width: auto;
  }

  .brand-logo {
    width: 104px;
    height: 64px;
  }

  .brand span {
    display: inline-flex;
    font-size: 30px;
  }

  .nav-links {
    display: flex;
    flex: 0 0 auto;
    gap: 0;
    margin-left: 0;
    font-size: 15px;
  }

  .nav-links a {
    display: none;
  }

  .nav-links a[href="./profile.html"],
  .nav-links a[href="./column.html"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(7, 19, 48, 0.14);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-size: 15px;
    font-weight: 950;
  }

  .nav-links a[href="./profile.html"] {
    margin-right: 6px;
  }

  .auth-user,
  .auth-status > span {
    display: none !important;
  }

  .staff-login-button,
  .logout-button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 15px;
  }

  .hero {
    min-height: 0;
  }

  .hero-bg,
  .hero-overlay {
    top: 0;
  }

  .hero-bg {
    display: none;
  }

  .hero-main-image {
    min-height: 0;
    object-fit: contain;
    object-position: center top;
  }

  .hero-kakao-hit {
    left: 5.8%;
    top: 28%;
    width: 33.4%;
    height: 5.7%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 236, 247, 0.78) 44%, rgba(255, 236, 247, 0.22) 100%);
  }

  .hero-content {
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
  }

  .column-page .section {
    padding: 34px 14px 54px;
  }

  h1 {
    font-size: clamp(34px, 9.8vw, 48px);
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.68;
  }

  .column-page .column-curation-hero {
    margin-bottom: 24px;
    padding: 24px 14px;
    border-radius: 14px;
  }

  .column-kicker-row {
    gap: 6px;
    margin-bottom: 14px;
  }

  .column-kicker-row span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .column-page .column-curation-hero h1 {
    font-size: clamp(30px, 9.4vw, 42px);
    line-height: 1.16;
  }

  .column-page .column-curation-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .column-list {
    display: grid !important;
    width: 100%;
    gap: 12px;
    margin-top: 0;
  }

  .column-loading {
    margin: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--muted);
    font-size: 15px;
    font-weight: 800;
    text-align: center;
  }

  .column-card {
    display: grid !important;
    min-height: 0;
    padding: 20px 18px 20px 22px;
    overflow: visible;
  }

  .column-card h3 {
    font-size: 20px;
    line-height: 1.35;
  }

  .column-card p {
    font-size: 15px;
  }

  .hero-proof span {
    font-size: 13px;
  }

  .primary-button,
  .secondary-button,
  .ghost-button {
    width: 100%;
  }

  .issue-grid,
  .service-grid,
  .studio-detail-board,
  .process {
    grid-template-columns: 1fr;
  }

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

  .profile-preview-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .column-list {
    grid-template-columns: 1fr;
  }

  .strategy-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .section-cta,
  .service-card {
    padding: 22px;
  }

  .column-case-warning,
  .column-case-question {
    margin: 24px auto 18px;
  }

  .column-case-pair {
    grid-template-columns: 1fr;
  }

  .column-case-pair .column-case-image + .column-case-image {
    border-top: 1px solid #d7d7d7;
    border-left: 0;
  }

  .column-case-pair .column-case-image {
    padding: 14px;
  }

  .column-ending-notice {
    margin-top: 40px;
    padding: 22px;
  }

  .column-ending-notice .notice-main {
    font-size: 17px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 720px);
    gap: 34px;
    padding: 46px 0 34px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 0;
    border-top: 1px solid #dbe6ef;
  }

  .footer-nav div {
    min-height: auto;
    padding: 24px 18px 22px 0;
    border-right: 0;
    border-bottom: 1px solid #dbe6ef;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
    padding: 28px 20px 34px;
  }

  .footer-bottom p {
    white-space: normal;
  }

  .notice-design-04,
  .notice-design-06 {
    grid-template-columns: 1fr;
  }

  .notice-design-04 .notice-accent {
    min-height: auto;
    padding: 18px 20px;
  }

  .notice-design-04 .notice-copy {
    padding: 22px 0 0;
  }

  .notice-design-06 .notice-accent {
    order: 1;
    width: 64px;
    height: 64px;
    font-size: 18px;
  }

  .notice-design-06 .notice-copy {
    order: 2;
  }

  .footer-policy {
    gap: 14px 18px;
  }

  .quick-menu {
    top: auto;
    right: 10px;
    bottom: 10px;
    left: auto;
    width: 112px;
    grid-template-columns: 1fr;
    transform: none;
  }

  .quick-menu.is-collapsed {
    width: 72px;
    height: 72px;
  }

  .quick-menu.is-collapsed .quick-menu-toggle {
    min-height: 72px;
  }

  .quick-menu-toggle {
    min-height: 40px;
  }

  .quick-menu-toggle span {
    width: 24px;
    height: 24px;
  }

  .quick-menu strong {
    display: grid;
  }

  .quick-menu a {
    min-height: 70px;
    padding: 8px 6px;
    font-size: 12px;
  }

  .quick-menu a span {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 14px;
  }

  .quick-menu a:nth-of-type(1) span {
    font-size: 20px;
  }

  .quick-menu .quick-kakao span {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 12px;
  }

  .quick-menu .quick-kakao span::before {
    left: 7px;
    top: 10px;
    width: 25px;
    height: 17px;
  }

  .quick-menu .quick-kakao span::after {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .quick-menu a:nth-of-type(3) span {
    font-size: 10px;
  }
}
