:root {
  --ink: #211f24;
  --ink-soft: #45414c;
  --muted: #716b79;
  --line: #ded9e7;
  --paper: #fbf9ff;
  --paper-2: #f2f0fa;
  --panel: #ffffff;
  --brand-blue: #4b63f4;
  --brand-purple: #8c5bc8;
  --brand-pink: #e74872;
  --brand-gradient: linear-gradient(90deg, #4b63f4 0%, #8c5bc8 50%, #e74872 100%);
  --lime: var(--brand-blue);
  --green: #25c28a;
  --coral: var(--brand-pink);
  --blue: var(--brand-blue);
  --teal: var(--brand-purple);
  --shadow: 0 18px 50px rgba(35, 30, 44, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Pretendard",
    "Noto Sans KR",
    "Apple SD Gothic Neo",
    "Malgun Gothic",
    "Segoe UI",
    system-ui,
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(251, 249, 255, 0.3), rgba(251, 249, 255, 0.08));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(162px, 18vw, 214px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--ink);
  color: var(--paper);
}

.site-nav .nav-cta {
  background: var(--brand-gradient);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
}

.nav-toggle svg,
.button svg,
.text-link svg,
.proof-list svg,
.studio-item svg,
.note-strip svg,
.aside-note svg,
.slot-visual svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.hero {
  position: relative;
  min-height: clamp(660px, 76svh, 820px);
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-slider {
  background: var(--ink);
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img,
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide img {
  transform: scale(1.03);
}

.hero-slide video {
  display: none;
}

.hero-slide.has-video img {
  display: none;
}

.hero-slide.has-video video {
  display: block;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(22, 20, 27, 0.88), rgba(43, 45, 101, 0.62) 52%, rgba(231, 72, 114, 0.24)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 40px));
  margin-right: auto;
  margin-left: max(40px, calc((100% - 1120px) / 2));
  padding: 136px 0 86px;
}

.hero-logo {
  width: min(248px, 64vw);
  height: auto;
  margin-bottom: 30px;
}

.hero-content h1,
.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero h1 {
  max-width: 1020px;
  font-size: clamp(40px, 3.6vw, 52px);
}

.hero-copy,
.page-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue);
}

.hero-actions,
.note-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.button.primary {
  background: var(--brand-gradient);
  color: #fff;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.price-band {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 154px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.metric.highlight {
  background: var(--brand-gradient);
  color: #fff;
}

.metric span,
.metric p {
  color: inherit;
  opacity: 0.78;
}

.metric strong {
  display: block;
  margin: 8px 0 10px;
  font-size: 34px;
  line-height: 1.1;
}

.metric p {
  margin: 0;
}

.section {
  padding: clamp(64px, 7vh, 82px) 0;
}

.section.muted {
  background: var(--paper-2);
}

.section.compact-section {
  padding: clamp(54px, 6vh, 68px) 0;
}

.split,
.proof-layout,
.contact-layout,
.checklist {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.24;
}

.copy-stack p,
.proof-layout p,
.studio-item p,
.flow p,
.contact-aside p {
  margin: 0;
  color: var(--ink-soft);
}

.copy-stack {
  display: grid;
  gap: 18px;
  font-size: 19px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 680px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.section-heading.wide h2,
.section-heading.wide p:not(.eyebrow) {
  max-width: 860px;
}

.space-spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.space-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
  align-items: start;
}

.space-spec-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  line-height: 1.6;
}

.space-spec-list span {
  color: var(--ink);
  font-weight: 900;
}

.space-image-wrap {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.space-image-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #fff;
}

.space-image-wrap figcaption {
  margin: 0;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.package-preview,
.package-disclosure,
.studio-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.package-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.package-tool-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.package-tool-card p {
  margin: 0;
  color: var(--ink-soft);
}

.package-card,
.studio-item,
.work-card,
.contact-form,
.contact-aside,
.package-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.package-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-items: start;
  min-height: 244px;
  padding: 24px;
}

.package-card.featured {
  background: var(--ink);
  color: var(--paper);
}

.package-card p {
  margin: 14px 0 24px;
  color: inherit;
  opacity: 0.74;
}

.package-card strong {
  align-self: end;
  font-size: 26px;
}

.package-disclosure {
  grid-template-columns: repeat(4, 1fr);
}

.package-mini-card {
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 14px;
  min-height: 250px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.package-mini-card.emphasis {
  background: var(--ink);
  color: var(--paper);
}

.package-mini-card h3 {
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.28;
}

.package-mini-card p {
  margin: 6px 0 0;
  color: inherit;
  opacity: 0.76;
}

.mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-content: start;
}

.mini-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.package-mini-card.emphasis .mini-meta span {
  border-color: rgba(255, 255, 255, 0.28);
}

.mini-links {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mini-links a {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.tag.coral {
  background: var(--coral);
  color: #fff;
}

.tag.green {
  background: var(--green);
  color: var(--ink);
}

.tag.blue {
  background: var(--blue);
  color: #fff;
}

.proof-section {
  background: var(--paper);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--blue);
  font-weight: 900;
}

.portfolio-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.portfolio-summary a {
  display: grid;
  align-content: center;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.portfolio-summary strong {
  font-size: 34px;
  line-height: 1.1;
}

.portfolio-summary span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-weight: 800;
}

.page-hero {
  padding: 112px 0 72px;
  background: var(--paper);
}

.page-hero.compact {
  padding-bottom: 56px;
}

.page-hero p {
  color: var(--ink-soft);
}

.package-table {
  display: grid;
  gap: 14px;
}

.package-row {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(460px, 1.35fr);
  gap: 20px;
  align-items: start;
  scroll-margin-top: 104px;
  padding: 20px;
}

.package-row.large {
  border-color: rgba(63, 91, 220, 0.35);
}

.package-row h2 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 28px);
  line-height: 1.25;
}

.package-row > div:first-child {
  display: grid;
  gap: 10px;
}

.package-row p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.package-row dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}

.package-row dl div {
  min-height: 84px;
  padding: 12px;
  border-radius: 8px;
  background: var(--paper-2);
  display: grid;
  align-content: start;
}

.package-portfolio-link {
  width: fit-content;
  align-items: center;
  gap: 8px;
  display: inline-flex;
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 4px;
}

.package-portfolio-link svg {
  width: 16px;
  height: 16px;
}

.package-combo-panel {
  grid-column: 2;
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
}

.package-combo-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.package-combo-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.package-combo-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--blue);
  font-weight: 900;
}

.package-row dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.package-row dd {
  margin: 8px 0 0;
  font-size: clamp(15px, 1.7vw, 17px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
  word-break: keep-all;
}

.note-strip {
  justify-content: space-between;
  margin-top: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
}

.note-strip p {
  flex: 1;
  min-width: 260px;
  margin: 0;
}

.work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-layout {
  display: grid;
  gap: 24px;
}

.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.portfolio-tab {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 900;
  cursor: pointer;
}

.portfolio-tab.is-active {
  color: #fff;
}

.portfolio-tab.is-active[data-portfolio-filter="basic"] {
  background: var(--blue);
}

.portfolio-tab.is-active[data-portfolio-filter="standard"] {
  background: var(--green);
  color: var(--ink);
}

.portfolio-tab.is-active[data-portfolio-filter="custom"] {
  background: var(--coral);
}

.work-card {
  overflow: hidden;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 62px rgba(17, 19, 18, 0.16);
}

.work-card img,
.slot-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ink);
}

.work-card > div:last-child {
  padding: 18px;
}

.work-card h2 {
  margin-top: 12px;
  font-size: 22px;
}

.work-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.work-meta {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.work-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
}

.slot-visual {
  display: grid;
  place-items: center;
  color: var(--lime);
}

.slot-visual svg {
  width: 54px;
  height: 54px;
}

.checklist ul,
.contact-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li,
.contact-aside li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 700;
}

.checklist li::before,
.contact-aside li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.studio-hero {
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
}

.studio-grid {
  grid-template-columns: repeat(5, 1fr);
}

.studio-item {
  min-height: 300px;
  padding: 24px;
}

.studio-item svg {
  width: 30px;
  height: 30px;
  margin-bottom: 24px;
  color: var(--coral);
}

.studio-item h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.equipment-section {
  background: var(--paper);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.equipment-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.equipment-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 18px;
  background: #ffffff;
}

.equipment-visual {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #ffffff;
}

.equipment-visual svg {
  width: 72px;
  height: 72px;
  color: var(--blue);
  stroke-width: 1.7;
}

.equipment-card div {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.equipment-card p {
  margin: 0;
  color: var(--ink-soft);
}

.equipment-card a {
  width: fit-content;
  color: var(--blue);
  font-weight: 900;
}

.prop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.prop-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.prop-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 28px;
  color: var(--blue);
}

.prop-card h3 {
  margin-bottom: 10px;
}

.prop-card p {
  margin: 0;
  color: var(--ink-soft);
}

.prop-video-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.prop-video {
  position: relative;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  color: var(--ink-soft);
  font-weight: 800;
  background: #fff;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.prop-video:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.prop-video img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

.prop-video span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.prop-video span svg {
  width: 14px;
  height: 14px;
}

.flow ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow li {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.flow span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--blue);
  font-weight: 900;
}

.flow strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.cta-band {
  background: var(--ink);
  color: var(--paper);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  max-width: 780px;
}

.contact-layout {
  align-items: stretch;
}

.contact-form,
.contact-aside {
  padding: 26px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(185, 255, 80, 0.5);
  border-color: var(--ink);
}

.submit-button {
  width: fit-content;
}

.form-status {
  min-height: 28px;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.contact-aside {
  display: grid;
  gap: 24px;
  align-content: space-between;
  background: var(--ink);
  color: var(--paper);
}

.contact-aside h2 {
  margin: 14px 0 18px;
  font-size: 30px;
}

.contact-aside li {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
}

.aside-note {
  display: flex;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.aside-note p {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  border-top: 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}

.footer-logo {
  width: min(220px, 48vw);
  height: auto;
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 20px;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding-top: 104px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero-copy,
  .page-hero p {
    font-size: 18px;
  }

  .price-grid,
  .package-preview,
  .package-disclosure,
  .portfolio-summary,
  .equipment-grid,
  .prop-grid,
  .studio-grid,
  .flow ol,
  .space-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .proof-layout,
  .contact-layout,
  .checklist,
  .package-row {
    grid-template-columns: 1fr;
  }

  .package-row dl {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-row h2 {
    font-size: 24px;
  }

  .package-row dd {
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand-logo {
    width: min(154px, 54vw);
  }

  .hero {
    min-height: 590px;
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    margin-left: 14px;
    padding: 84px 0 72px;
  }

  .hero-logo {
    width: min(196px, 58vw);
    margin-bottom: 24px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 30px;
  }

  .hero-slide img,
  .hero-slide video {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(22, 20, 27, 0.94), rgba(30, 28, 54, 0.84) 62%, rgba(231, 72, 114, 0.32)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 42%);
  }

  .section {
    padding: 64px 0;
  }

  .page-hero {
    padding: 74px 0 46px;
  }

  h2 {
    font-size: 30px;
  }

  .price-grid,
  .package-preview,
  .package-disclosure,
  .portfolio-summary,
  .equipment-grid,
  .prop-grid,
  .studio-grid,
  .work-grid,
  .flow ol,
  .space-layout,
  .field-pair,
  .proof-list,
  .package-row dl,
  .cta-band .container,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 156px;
  }

  .package-card,
  .package-mini-card,
  .studio-item,
  .flow li {
    min-height: auto;
  }

  .package-row,
  .contact-form,
  .contact-aside {
    padding: 20px;
  }

  .submit-button {
    width: 100%;
  }

  .footer-inner {
    display: grid;
    align-items: start;
    padding: 24px 0;
  }
}

/* Visual refresh: Mingle-inspired layout using Creatorbus brand colors. */
:root {
  --ink: #171425;
  --ink-soft: #44405c;
  --muted: #746f8a;
  --line: rgba(75, 99, 244, 0.16);
  --paper: #fbfbff;
  --paper-2: #f3f5ff;
  --panel: rgba(255, 255, 255, 0.94);
  --brand-blue: #4b63f4;
  --brand-purple: #8c5bc8;
  --brand-pink: #e74872;
  --brand-gradient: linear-gradient(100deg, #4b63f4 0%, #8c5bc8 52%, #e74872 100%);
  --green: #26d69f;
  --coral: var(--brand-pink);
  --blue: var(--brand-blue);
  --teal: var(--brand-purple);
  --shadow: 0 24px 70px rgba(30, 26, 70, 0.11);
  --soft-shadow: 0 10px 34px rgba(30, 26, 70, 0.08);
}

body {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 42%, #f7f3ff 100%);
  color: var(--ink);
}

.container {
  width: min(1180px, calc(100% - 48px));
}

.site-header {
  min-height: 72px;
  padding: 12px 32px;
  border-bottom: 1px solid rgba(75, 99, 244, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 36px rgba(30, 26, 70, 0.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
  backdrop-filter: blur(20px) saturate(1.15);
}

.brand-logo {
  width: clamp(170px, 17vw, 220px);
}

.site-nav {
  gap: 8px;
}

.site-nav a {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a.active {
  border-color: rgba(75, 99, 244, 0.18);
  background: rgba(75, 99, 244, 0.1);
  color: var(--brand-blue);
}

.site-nav .nav-cta,
.site-nav .nav-cta.active {
  border-color: transparent;
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 10px 24px rgba(75, 99, 244, 0.22);
}

.nav-toggle {
  border-color: rgba(75, 99, 244, 0.16);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.hero {
  min-height: clamp(690px, 78svh, 860px);
}

.hero-slide img {
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 14, 34, 0.9) 0%, rgba(35, 33, 83, 0.68) 45%, rgba(75, 99, 244, 0.26) 70%, rgba(231, 72, 114, 0.24) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.04) 56%);
}

.hero-content {
  width: min(900px, calc(100% - 48px));
  margin-left: max(32px, calc((100% - 1180px) / 2));
  padding: 150px 0 92px;
}

.hero-logo {
  width: min(268px, 64vw);
  margin-bottom: 34px;
}

.hero-content h1,
.page-hero h1 {
  font-size: clamp(42px, 4.4vw, 66px);
  line-height: 1.06;
}

.page-hero h1 {
  max-width: 1040px;
  font-size: clamp(40px, 3.8vw, 58px);
}

.hero-copy,
.page-hero p {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.7;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
}

.page-hero p {
  color: var(--ink-soft);
}

.eyebrow {
  letter-spacing: 0;
}

.eyebrow.dark {
  color: var(--brand-purple);
}

.button {
  min-height: 50px;
  padding: 0 20px;
  box-shadow: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--brand-gradient);
  box-shadow: 0 16px 34px rgba(75, 99, 244, 0.25);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.price-band {
  padding: 26px 0;
  background: linear-gradient(115deg, #171425 0%, #2c2a65 52%, #4b63f4 100%);
}

.metric {
  min-height: 164px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.metric.highlight {
  background: linear-gradient(135deg, rgba(75, 99, 244, 0.95), rgba(231, 72, 114, 0.94));
}

.metric strong {
  font-size: clamp(28px, 3vw, 38px);
}

.section {
  padding: clamp(76px, 8vh, 104px) 0;
}

.section.muted {
  background:
    linear-gradient(180deg, rgba(75, 99, 244, 0.06), rgba(140, 91, 200, 0.06));
}

.section.compact-section {
  padding: clamp(60px, 7vh, 84px) 0;
}

h2 {
  font-size: clamp(32px, 3vw, 44px);
}

h3 {
  font-size: clamp(21px, 2vw, 26px);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.page-hero {
  padding: 132px 0 80px;
  border-bottom: 1px solid rgba(75, 99, 244, 0.12);
  background:
    linear-gradient(135deg, rgba(75, 99, 244, 0.1), rgba(231, 72, 114, 0.08)),
    linear-gradient(180deg, #ffffff, #f7f8ff);
}

.page-hero.compact {
  padding-bottom: 64px;
}

.package-card,
.studio-item,
.work-card,
.contact-form,
.contact-aside,
.package-row,
.equipment-card,
.prop-card,
.flow li,
.portfolio-summary a,
.space-spec-list li,
.space-image-wrap {
  border: 1px solid rgba(75, 99, 244, 0.14);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.package-card,
.package-mini-card,
.package-tool-card,
.studio-item,
.work-card,
.equipment-card,
.prop-card,
.flow li,
.portfolio-summary a,
.package-row {
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.package-card:hover,
.package-mini-card:hover,
.package-tool-card:hover,
.studio-item:hover,
.work-card:hover,
.equipment-card:hover,
.prop-card:hover,
.flow li:hover,
.portfolio-summary a:hover,
.package-row:hover {
  transform: translateY(-3px);
  border-color: rgba(75, 99, 244, 0.28);
  box-shadow: var(--shadow);
}

.package-disclosure,
.studio-grid,
.work-grid,
.equipment-grid,
.package-tool-grid,
.prop-grid,
.flow ol,
.portfolio-summary,
.price-grid {
  gap: 20px;
}

.package-tool-card {
  min-height: 198px;
  padding: 24px;
  border-color: rgba(75, 99, 244, 0.14);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--soft-shadow);
}

.package-tool-card h3 {
  font-size: 22px;
}

.package-disclosure {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-mini-card {
  min-height: 280px;
  padding: 24px;
  border-color: rgba(75, 99, 244, 0.14);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--soft-shadow);
}

.package-mini-card.emphasis,
.package-card.featured,
.contact-aside {
  background: linear-gradient(140deg, #171425 0%, #2a275d 58%, #4b63f4 100%);
  color: #fff;
}

.package-mini-card p,
.package-card p {
  opacity: 0.78;
}

.mini-meta span {
  border-color: rgba(75, 99, 244, 0.16);
  background: rgba(75, 99, 244, 0.06);
}

.tag {
  min-height: 30px;
  padding: 0 12px;
  background: var(--brand-blue);
  box-shadow: 0 8px 18px rgba(75, 99, 244, 0.16);
  font-size: 12px;
}

.tag.green {
  background: var(--green);
  color: #111827;
  box-shadow: 0 8px 18px rgba(38, 214, 159, 0.18);
}

.tag.coral {
  background: var(--brand-pink);
  box-shadow: 0 8px 18px rgba(231, 72, 114, 0.18);
}

.tag.blue {
  background: var(--brand-blue);
}

.package-row {
  grid-template-columns: minmax(280px, 0.86fr) minmax(540px, 1.48fr);
  gap: 24px;
  padding: 26px;
}

.package-row h2 {
  font-size: clamp(25px, 2.5vw, 31px);
}

.package-row dl {
  gap: 14px;
}

.package-row dl div {
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(75, 99, 244, 0.12);
  background: linear-gradient(180deg, #ffffff, #f7f8ff);
}

.package-combo-panel {
  border-color: rgba(75, 99, 244, 0.12);
  background: linear-gradient(180deg, #ffffff, #f7f8ff);
}

.package-combo-list a {
  border-color: rgba(75, 99, 244, 0.14);
  background: rgba(255, 255, 255, 0.92);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.package-combo-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(75, 99, 244, 0.28);
  box-shadow: var(--soft-shadow);
}

.package-row dt {
  color: var(--brand-purple);
  font-size: 12px;
}

.package-row dd {
  font-size: clamp(15px, 1.45vw, 17px);
  line-height: 1.55;
}

.package-portfolio-link,
.text-link,
.equipment-card a,
.work-meta {
  color: var(--brand-blue);
}

.portfolio-summary a {
  min-height: 178px;
}

.portfolio-summary strong {
  font-size: clamp(30px, 3vw, 40px);
}

.work-card {
  overflow: hidden;
}

.portfolio-tabs {
  border-color: rgba(75, 99, 244, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
}

.work-card img,
.slot-visual {
  background: #181528;
}

.work-card > div:last-child,
.equipment-card div {
  padding: 18px;
}

.work-card h2 {
  font-size: clamp(19px, 1.6vw, 22px);
}

.studio-hero {
  background:
    linear-gradient(135deg, rgba(75, 99, 244, 0.1), rgba(231, 72, 114, 0.08)),
    linear-gradient(180deg, #ffffff, #f7f8ff);
}

.studio-item {
  min-height: 286px;
}

.studio-item svg,
.prop-card svg {
  color: var(--brand-blue);
}

.equipment-section {
  background: #fff;
}

.equipment-card img {
  padding: 22px;
  background:
    linear-gradient(180deg, #ffffff, #f5f7ff);
}

.equipment-visual {
  background:
    linear-gradient(180deg, #ffffff, #f5f7ff);
}

.space-spec-list li {
  box-shadow: var(--soft-shadow);
}

.flow span {
  color: var(--brand-pink);
}

.cta-band,
.site-footer {
  background: linear-gradient(120deg, #171425, #2d2969 58%, #4b63f4);
}

.contact-form {
  background: rgba(255, 255, 255, 0.96);
}

input,
select,
textarea {
  border-color: rgba(75, 99, 244, 0.18);
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(75, 99, 244, 0.18);
  border-color: var(--brand-blue);
}

.contact-aside li {
  border-color: rgba(255, 255, 255, 0.16);
}

.checklist li::before,
.contact-aside li::before {
  background: var(--brand-pink);
}

.aside-note {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 40px, 1180px);
  }

  .site-header {
    min-height: 72px;
    padding: 12px 20px;
  }

  .site-nav {
    top: 76px;
    border-color: rgba(75, 99, 244, 0.16);
    background: rgba(255, 255, 255, 0.96);
  }

  .hero-content {
    width: min(100% - 40px, 860px);
    margin-left: 20px;
    padding-top: 116px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .package-disclosure,
  .price-grid,
  .portfolio-summary,
  .equipment-grid,
  .package-tool-grid,
  .prop-grid,
  .studio-grid,
  .flow ol,
  .space-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-row {
    grid-template-columns: 1fr;
  }

  .package-combo-panel {
    grid-column: 1;
  }

  .package-row dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 10px 14px;
  }

  .site-nav {
    right: 14px;
    left: 14px;
  }

  .hero {
    min-height: 610px;
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    margin-left: 14px;
    padding: 96px 0 72px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 32px;
    line-height: 1.14;
  }

  .hero-copy,
  .page-hero p,
  .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(16, 14, 34, 0.94) 0%, rgba(35, 33, 83, 0.84) 60%, rgba(231, 72, 114, 0.28) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.08) 58%);
  }

  .section {
    padding: 62px 0;
  }

  .page-hero {
    padding: 92px 0 52px;
  }

  .price-grid,
  .package-disclosure,
  .portfolio-summary,
  .equipment-grid,
  .package-tool-grid,
  .prop-grid,
  .studio-grid,
  .work-grid,
  .flow ol,
  .space-layout,
  .field-pair,
  .proof-list,
  .package-row dl,
  .package-combo-list,
  .cta-band .container,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .metric,
  .package-mini-card,
  .studio-item,
  .flow li,
  .portfolio-summary a {
    min-height: auto;
  }

  .package-row,
  .package-mini-card,
  .contact-form,
  .contact-aside {
    padding: 20px;
  }

  .package-row dl div {
    min-height: auto;
  }

  .footer-inner {
    padding: 26px 0;
  }
}
/* Typography polish: keep prices together and reduce over-bold text. */
body {
  color: #262234;
  font-weight: 400;
}

h2,
h3 {
  color: var(--ink);
  font-weight: 700;
}

p,
dd,
li,
label,
.section-heading p:not(.eyebrow),
.package-tool-card p,
.package-mini-card p,
.package-row p,
.work-card p,
.equipment-card p,
.prop-card p,
.flow p,
.contact-aside p {
  color: var(--ink-soft);
  font-weight: 400;
}

.metric span,
.metric p {
  color: rgba(255, 255, 255, 0.72);
  opacity: 1;
  font-weight: 400;
}

.metric strong,
.portfolio-summary strong {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.metric strong {
  font-size: clamp(24px, 2.45vw, 34px);
}

.package-row h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: 0;
}

.package-title-main {
  color: var(--ink);
}

.package-title-price {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(75, 99, 244, 0.08);
  color: var(--brand-blue);
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.package-row dt,
.package-combo-panel p,
.portfolio-summary span,
.work-tags span,
.tag,
.mini-meta span {
  font-weight: 700;
}

.package-row dd {
  color: var(--ink-soft);
  font-weight: 500;
}

.package-mini-card h3,
.work-card h2,
.studio-item h2,
.prop-card h3,
.equipment-card h3 {
  font-weight: 700;
}

.package-mini-card p,
.package-card p {
  opacity: 1;
}

.package-mini-card.emphasis h3,
.package-mini-card.emphasis .package-title-main {
  color: #fff;
}

.package-mini-card.emphasis p,
.package-mini-card.emphasis .mini-meta span {
  color: rgba(255, 255, 255, 0.76);
}

.mini-meta span,
.package-combo-list a,
.package-portfolio-link,
.mini-links a,
.text-link,
.equipment-card a,
.work-meta {
  font-weight: 700;
}

.mini-meta span,
.package-combo-list a {
  white-space: nowrap;
}

@media (max-width: 680px) {
  .metric strong {
    font-size: 28px;
  }

  .package-row h2 {
    font-size: 23px;
  }

  .package-title-price {
    font-size: 16px;
  }
}
/* Additional option table. */
.option-table-wrap {
  width: min(1180px, calc(100% - 48px));
  margin-top: 22px;
  margin-right: auto;
  margin-left: auto;
  padding: 26px;
  border: 1px solid rgba(75, 99, 244, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--soft-shadow);
}

.option-heading {
  margin-bottom: 18px;
}

.option-heading h2 {
  font-size: clamp(24px, 2.4vw, 32px);
}

.option-heading p:not(.eyebrow) {
  margin-top: 10px;
  font-size: 16px;
}

.option-table {
  display: grid;
  gap: 8px;
}

.option-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.85fr) minmax(110px, 0.75fr) minmax(260px, 1.7fr);
  gap: 12px;
  align-items: center;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(75, 99, 244, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 15px;
}

.option-row span:first-child {
  color: var(--ink);
  font-weight: 700;
}

.option-row span:nth-child(2) {
  color: var(--brand-blue);
  font-weight: 800;
  white-space: nowrap;
}

.option-row-head {
  min-height: 42px;
  background: rgba(75, 99, 244, 0.08);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.option-row-head span:nth-child(2) {
  color: var(--ink);
}

.option-row-muted {
  min-height: 44px;
  border-color: rgba(116, 111, 138, 0.16);
  background: rgba(116, 111, 138, 0.05);
  font-size: 13px;
}

.option-row-muted span,
.option-row-muted span:first-child,
.option-row-muted span:nth-child(2) {
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 680px) {
  .option-table-wrap {
    width: min(100% - 28px, 1180px);
    padding: 20px;
  }

  .option-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .option-row-head {
    display: none;
  }
}

/* Toss-inspired system refresh. */
:root {
  --ink: #191f28;
  --ink-soft: #4e5968;
  --muted: #8b95a1;
  --line: #e5e8eb;
  --paper: #ffffff;
  --paper-2: #f7f8fa;
  --panel: #ffffff;
  --brand-blue: #3182f6;
  --brand-purple: #7b61ff;
  --brand-pink: #f04452;
  --brand-gradient: #3182f6;
  --green: #00c471;
  --coral: #f04452;
  --blue: #3182f6;
  --teal: #00a3ff;
  --shadow: 0 16px 40px rgba(25, 31, 40, 0.08);
  --soft-shadow: 0 8px 24px rgba(25, 31, 40, 0.06);
}

* {
  letter-spacing: 0;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
}

.container {
  width: min(1120px, calc(100% - 48px));
}

.site-header {
  min-height: 68px;
  padding: 10px 28px;
  border-bottom: 1px solid rgba(229, 232, 235, 0.82);
  background: #fff;
  box-shadow: none;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand-logo {
  width: clamp(156px, 16vw, 206px);
}

.site-nav {
  gap: 2px;
}

.site-nav a {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #4e5968;
  font-size: 15px;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a.active {
  background: #f2f4f6;
  color: var(--ink);
}

.site-nav .nav-cta,
.site-nav .nav-cta.active {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: none;
}

.nav-toggle {
  border-color: var(--line);
  background: #fff;
  box-shadow: none;
}

.hero {
  min-height: clamp(640px, 78svh, 820px);
  color: #fff;
}

.hero-slide img {
  transform: none;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.42) 52%, rgba(15, 23, 42, 0.12) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.38), rgba(15, 23, 42, 0.04) 56%);
}

.hero-content {
  width: min(780px, calc(100% - 48px));
  margin-left: max(24px, calc((100% - 1120px) / 2));
  padding: 148px 0 92px;
}

.hero-logo {
  width: min(230px, 58vw);
  margin-bottom: 34px;
}

.hero-content h1,
.page-hero h1 {
  color: inherit;
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(40px, 4.4vw, 64px);
}

.hero-copy,
.page-hero p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.65;
}

.page-hero p {
  color: var(--ink-soft);
}

.eyebrow,
.eyebrow.dark {
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.button {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 700;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: none;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.price-band,
.section.muted,
.equipment-section {
  background: var(--paper-2);
}

.price-band {
  padding: 28px 0;
  color: var(--ink);
}

.price-band-actions {
  display: flex;
  justify-content: center;
  width: min(1120px, calc(100% - 48px));
  margin: 22px auto 0;
}

.option-table-wrap {
  width: min(1120px, calc(100% - 48px));
  margin-top: 16px;
  padding: 24px;
}

.option-row {
  grid-template-columns: minmax(150px, 0.8fr) minmax(140px, 0.7fr) minmax(0, 2.2fr);
}

.price-grid,
.package-disclosure,
.studio-grid,
.work-grid,
.equipment-grid,
.package-tool-grid,
.prop-grid,
.flow ol,
.portfolio-summary {
  gap: 16px;
}

.metric,
.metric.highlight,
.package-card,
.package-mini-card,
.package-tool-card,
.studio-item,
.work-card,
.contact-form,
.contact-aside,
.package-row,
.equipment-card,
.prop-card,
.flow li,
.portfolio-summary a,
.space-spec-list li,
.space-image-wrap,
.option-table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.metric {
  min-height: 150px;
}

.metric.highlight,
.package-mini-card.emphasis,
.package-card.featured,
.contact-aside,
.cta-band,
.site-footer {
  background: var(--ink);
  color: #fff;
}

.metric span,
.metric p,
.metric.highlight span,
.metric.highlight p {
  color: var(--ink-soft);
  opacity: 1;
}

.metric.highlight span,
.metric.highlight p,
.package-mini-card.emphasis p,
.package-mini-card.emphasis .mini-meta span,
.contact-aside p,
.contact-aside li {
  color: rgba(255, 255, 255, 0.76);
}

.metric strong,
.portfolio-summary strong {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

.metric.highlight strong,
.package-mini-card.emphasis h3,
.contact-aside h2 {
  color: #fff;
}

.section {
  padding: clamp(72px, 8vh, 104px) 0;
}

h2,
h3,
.package-row h2 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.18;
}

h3 {
  font-size: clamp(21px, 2vw, 26px);
}

p,
dd,
li,
label,
.section-heading p:not(.eyebrow),
.package-tool-card p,
.package-mini-card p,
.package-row p,
.work-card p,
.equipment-card p,
.prop-card p,
.flow p,
.contact-aside p {
  color: var(--ink-soft);
}

.page-hero,
.studio-hero {
  padding: 128px 0 82px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.package-tool-card,
.package-mini-card,
.studio-item,
.prop-card,
.flow li,
.portfolio-summary a,
.package-row {
  padding: 24px;
}

.package-card:hover,
.package-mini-card:hover,
.package-tool-card:hover,
.studio-item:hover,
.work-card:hover,
.equipment-card:hover,
.prop-card:hover,
.flow li:hover,
.portfolio-summary a:hover,
.package-row:hover,
.package-combo-list a:hover {
  transform: translateY(-2px);
  border-color: #d1d6db;
  box-shadow: var(--soft-shadow);
}

.tag {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e8f3ff;
  color: var(--brand-blue);
  box-shadow: none;
  font-weight: 700;
}

.tag.blue {
  background: #e8f3ff;
  color: var(--brand-blue);
}

.tag.green {
  background: #e9fbf2;
  color: #008c4f;
}

.tag.coral {
  background: #fff0f1;
  color: var(--coral);
}

.mini-meta span,
.work-tags span,
.package-row dl div,
.package-combo-panel,
.package-combo-list a,
.option-row {
  border-color: var(--line);
  background: var(--paper-2);
}

.mini-links a,
.package-portfolio-link,
.text-link,
.equipment-card a,
.work-meta,
.option-row span:nth-child(2) {
  color: var(--brand-blue);
  font-weight: 700;
}

.portfolio-tabs {
  padding: 4px;
  border-color: var(--line);
  background: #fff;
  box-shadow: none;
}

.portfolio-tab {
  min-height: 40px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-weight: 700;
}

.portfolio-tab.is-active,
.portfolio-tab.is-active[data-portfolio-filter="basic"],
.portfolio-tab.is-active[data-portfolio-filter="standard"],
.portfolio-tab.is-active[data-portfolio-filter="custom"] {
  background: var(--brand-blue);
  color: #fff;
}

.work-card {
  overflow: hidden;
}

.work-card img,
.slot-visual {
  background: #f2f4f6;
}

.equipment-card img,
.equipment-visual {
  background: var(--paper-2);
}

.studio-media-layout {
  display: block;
}

.studio-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.studio-photo-grid img {
  display: block;
  width: 100%;
  background: var(--paper-2);
  object-fit: cover;
}

.studio-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.studio-photo-grid img {
  aspect-ratio: 16 / 9;
}

.studio-photo-grid figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.hero-slide img,
.space-image-wrap img,
.studio-photo-grid img {
  filter: brightness(0.72) contrast(1.04);
}

.flow span {
  color: var(--brand-blue);
}

input,
select,
textarea {
  border-color: var(--line);
  border-radius: 8px;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid #e8f3ff;
  border-color: var(--brand-blue);
}

.form-status {
  color: var(--brand-blue);
}

.contact-mail-panel {
  align-content: start;
  gap: 18px;
}

.contact-mail-panel h2 {
  max-width: 100%;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.15;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.contact-mail-panel p {
  margin: 0;
  color: var(--ink-soft);
}

.mail-address {
  display: inline-flex;
  width: fit-content;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--paper-2);
  color: var(--brand-blue);
  font-weight: 800;
}

.footer-inner {
  min-height: 84px;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.5;
  text-align: right;
}

.footer-info a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 40px, 1120px);
  }

  .site-nav {
    top: 72px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--soft-shadow);
  }

  .hero-content {
    width: min(100% - 40px, 780px);
    margin-left: 20px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 10px 14px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    margin-left: 14px;
    padding: 96px 0 70px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-copy,
  .page-hero p,
  .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  h2 {
    font-size: 30px;
  }

  .page-hero,
  .studio-hero {
    padding: 92px 0 54px;
  }

  .package-tool-card,
  .package-mini-card,
  .studio-item,
  .prop-card,
  .flow li,
  .portfolio-summary a,
  .package-row {
    padding: 20px;
  }

  .footer-info {
    justify-content: flex-start;
    text-align: left;
  }

  .studio-media-layout {
    display: block;
  }

  .studio-photo-grid {
    grid-template-columns: 1fr;
  }
}

.package-mini-card.emphasis {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.package-mini-card.emphasis h3 {
  color: var(--ink);
}

.package-mini-card.emphasis p,
.package-mini-card.emphasis .mini-meta span {
  color: var(--ink-soft);
}

.package-mini-card.emphasis .mini-meta span {
  border-color: var(--line);
  background: var(--paper-2);
}

.service-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.service-jump-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f2f4f6;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.service-jump-nav a:hover {
  background: #e8f3ff;
  color: var(--brand-blue);
}

.package-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.84) 0%, rgba(15, 23, 42, 0.6) 52%, rgba(15, 23, 42, 0.34) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.56), rgba(15, 23, 42, 0.1)),
    url("/assets/studio/assets/studio/space-wide-2.jpg") center 42% / cover no-repeat;
  color: #fff;
}

.package-hero h1,
.package-hero p:not(.eyebrow) {
  color: #fff;
}

.package-hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.package-hero .service-jump-nav a {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.package-hero .service-jump-nav a:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.service-detail-wrap {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.service-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.price-compare {
  display: grid;
  gap: 8px;
}

.price-compare-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) minmax(130px, 0.8fr) minmax(260px, 1.6fr) minmax(220px, 1.2fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  color: var(--ink-soft);
}

.price-compare-head {
  min-height: 42px;
  background: #e8f3ff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.price-compare-row span:first-child,
.price-compare-row span:nth-child(2) {
  color: var(--ink);
  font-weight: 800;
}

.price-compare-row span:nth-child(2) {
  color: var(--brand-blue);
  white-space: nowrap;
}

.price-compare-head span:nth-child(2) {
  color: var(--ink);
}

.multi-pass {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  scroll-margin-top: 104px;
}

.multi-pass-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.multi-pass-heading h3 {
  margin: 0;
  font-size: 22px;
}

.multi-pass-grid {
  display: grid;
  gap: 8px;
}

.multi-pass-row {
  display: grid;
  grid-template-columns: minmax(90px, 0.6fr) minmax(120px, 0.8fr) minmax(220px, 1.2fr);
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink-soft);
}

.multi-pass-head {
  min-height: 36px;
  background: #e9fbf2;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.multi-pass-row span:first-child,
.multi-pass-row strong {
  color: var(--ink);
  font-weight: 800;
}

.multi-pass-row strong {
  color: var(--green);
  white-space: nowrap;
}

.benefit-highlight {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 102, 128, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 102, 128, 0.12), rgba(49, 130, 246, 0.12)),
    var(--paper-2);
  scroll-margin-top: 104px;
}

.benefit-highlight-head {
  display: grid;
  gap: 8px;
}

.benefit-highlight-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
}

.benefit-highlight-head p {
  max-width: 840px;
  margin: 0;
  color: var(--ink-soft);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.benefit-item {
  display: grid;
  gap: 8px;
  min-height: 156px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.benefit-item span {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
}

.benefit-item strong {
  color: var(--coral);
  font-size: 24px;
  line-height: 1.2;
}

.benefit-item p {
  margin: 0;
  color: var(--ink-soft);
}

.benefit-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-rules li {
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.service-footnote {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.notice-card {
  position: relative;
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
}

.notice-card span,
.service-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #e8f3ff;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
}

.notice-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.notice-card p {
  margin: 0;
  color: var(--ink-soft);
}

.notice-checklist {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.notice-checklist li {
  padding: 0;
  border: 0;
  color: var(--ink-soft);
  font-weight: 400;
}

.notice-checklist li::before {
  display: none;
}

.notice-checklist strong {
  display: inline-flex;
  min-width: 68px;
  color: var(--ink);
  font-weight: 800;
}

.coupon-policy {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  scroll-margin-top: 104px;
}

.coupon-policy-heading {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.coupon-policy-heading h3 {
  margin: 0;
  font-size: 22px;
}

.coupon-policy-heading p {
  margin: 0;
  color: var(--ink-soft);
}

.coupon-rule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.coupon-rule-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 260px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
}

.coupon-rule-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff0f1;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.coupon-rule-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.coupon-rule-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.coupon-exclusion-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.refund-policy {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(360px, 1.3fr);
  gap: 18px;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.refund-policy h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.refund-policy p {
  margin: 0;
  color: var(--ink-soft);
}

.refund-table {
  display: grid;
  gap: 8px;
}

.refund-row {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 12px;
  align-items: center;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
}

.refund-head {
  background: #e8f3ff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.refund-row span:first-child {
  color: var(--ink);
  font-weight: 700;
}

.refund-row span:last-child {
  color: var(--brand-blue);
  font-weight: 800;
}

.service-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-steps li {
  position: relative;
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
}

.service-steps li:not(:last-child)::after {
  content: "›";
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  top: 34px;
  right: -22px;
  width: 28px;
  height: 28px;
  border: 1px solid #c7d8ff;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-blue);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(25, 31, 40, 0.08);
}

.service-steps strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

.service-steps p {
  margin: 0;
  color: var(--ink-soft);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
}

.faq-list summary {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq-list summary::marker {
  color: var(--brand-blue);
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .price-compare-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .multi-pass-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-rules {
    grid-template-columns: 1fr;
  }

  .notice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coupon-rule-grid {
    grid-template-columns: 1fr;
  }

  .service-steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-steps li:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: calc(50% - 14px);
    bottom: -31px;
  }
}

@media (max-width: 680px) {
  .service-panel {
    padding: 20px;
  }

  .price-compare-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-compare-head,
  .multi-pass-head {
    display: none;
  }

  .multi-pass-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .benefit-grid,
  .benefit-rules {
    grid-template-columns: 1fr;
  }

  .notice-grid,
  .service-steps {
    grid-template-columns: 1fr;
  }

  .notice-grid {
    gap: 14px;
  }

  .notice-card,
  .coupon-rule-card,
  .service-steps li {
    min-height: auto;
  }

  .refund-policy,
  .refund-row {
    grid-template-columns: 1fr;
  }

  .option-table-wrap {
    width: min(100% - 28px, 1120px);
    padding: 20px;
  }

  .option-row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    min-height: auto;
    padding: 16px;
  }

  .option-row-head {
    display: none;
  }

  .option-row span {
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .option-row span:first-child,
  .option-row span:nth-child(2) {
    display: inline-flex;
    width: fit-content;
  }
}

/* Final alignment pass: keep typography, card rhythm, and long copy consistent. */
body,
button,
input,
select,
textarea {
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading,
.option-heading,
.page-hero .container {
  max-width: 920px;
}

.section-heading.wide,
.package-hero .container {
  max-width: 1180px;
}

.package-tool-card,
.package-mini-card,
.studio-item,
.work-card,
.equipment-card,
.prop-card,
.notice-card,
.coupon-rule-card,
.service-panel {
  border-radius: 8px;
}

.package-tool-card,
.notice-card,
.coupon-rule-card,
.work-card > div:last-child {
  display: grid;
  align-content: start;
}

.package-tool-card p,
.package-mini-card p,
.work-card p,
.equipment-card p,
.prop-card p,
.notice-card p,
.coupon-rule-card p,
.coupon-exclusion-list,
.faq-list p {
  max-width: 68ch;
  line-height: 1.62;
}

.work-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.work-card h2 {
  min-height: 2.6em;
  line-height: 1.3;
}

.work-meta {
  display: inline-flex;
  max-width: 100%;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.work-tags span {
  font-weight: 700;
  line-height: 1.2;
}

.coupon-rule-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.coupon-rule-card {
  min-height: 220px;
}

.coupon-exclusion-list li {
  line-height: 1.58;
}

br.mobile-break {
  display: none;
}

@media (max-width: 680px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    word-break: normal;
  }

  .container,
  .option-table-wrap,
  .price-band-actions {
    width: min(100% - 28px, 1120px);
  }

  .hero-content,
  .package-hero .container,
  .page-hero .container {
    width: min(100% - 28px, 760px);
    margin-right: auto;
    margin-left: auto;
  }

  .hero-content h1,
  .page-hero h1,
  h2 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: keep-all;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 30px;
    line-height: 1.22;
  }

  h2 {
    font-size: 28px;
    line-height: 1.24;
  }

  .hero-copy,
  .page-hero p,
  .section-heading p:not(.eyebrow) {
    max-width: 34ch;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  p,
  li,
  dd,
  .metric p,
  .package-card p,
  .package-mini-card p,
  .studio-item p,
  .contact-form p,
  .contact-aside p,
  .contact-aside li,
  .equipment-card p,
  .prop-card p,
  .notice-card p,
  .coupon-rule-card p {
    overflow-wrap: break-word;
    word-break: keep-all;
  }

  .contact-mail-panel h2 {
    overflow-wrap: break-word;
    word-break: keep-all;
  }

  .mail-address {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .contact-mail-panel h2 {
    font-size: 24px;
    line-height: 1.25;
  }

  .contact-mail-panel .submit-button {
    justify-content: center;
    width: 100%;
    max-width: 320px;
  }

  .metric p,
  .package-card p,
  .package-mini-card p,
  .studio-item p,
  .contact-form p,
  .contact-aside p,
  .contact-aside li,
  .equipment-card p,
  .prop-card p,
  .notice-card p,
  .coupon-rule-card p {
    max-width: 34ch;
  }

  br.mobile-break {
    display: inline;
  }

  .work-card h2 {
    min-height: auto;
  }

  .work-tags {
    gap: 7px;
  }

  .service-jump-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .service-jump-nav a {
    justify-content: center;
    min-width: 0;
    padding: 0 10px;
  }

  .coupon-policy,
  .refund-policy {
    padding: 16px;
  }

  .coupon-rule-grid {
    grid-template-columns: 1fr;
  }
}

/* Theme system: dark is the default, with an explicit light-mode override. */
:root {
  color-scheme: dark;
  --ink: #f4f7fb;
  --ink-soft: #c6ceda;
  --muted: #8f9cad;
  --line: rgba(226, 233, 243, 0.15);
  --paper: #0b0d10;
  --paper-2: #11161f;
  --panel: #171d26;
  --panel-2: #202838;
  --brand-blue: #6aa7ff;
  --brand-purple: #a18cff;
  --brand-pink: #ff6680;
  --brand-gradient: linear-gradient(90deg, #6aa7ff 0%, #a18cff 48%, #ff6680 100%);
  --green: #43df9b;
  --coral: #ff6680;
  --blue: #6aa7ff;
  --teal: #55c9ff;
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
  --soft-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  --header-bg: rgba(11, 13, 16, 0.86);
  --header-line: rgba(226, 233, 243, 0.16);
  --control-bg: #11161f;
  --strong-panel: #070a0f;
  --nav-hover: rgba(255, 255, 255, 0.08);
  --accent-soft: rgba(106, 167, 255, 0.15);
  --accent-soft-strong: rgba(106, 167, 255, 0.24);
  --green-soft: rgba(67, 223, 155, 0.15);
  --coral-soft: rgba(255, 102, 128, 0.16);
  --image-bg: #0f141c;
  --focus-ring: rgba(106, 167, 255, 0.35);
}

:root[data-theme="light"] {
  color-scheme: light;
  --ink: #191f28;
  --ink-soft: #4e5968;
  --muted: #8b95a1;
  --line: #e5e8eb;
  --paper: #ffffff;
  --paper-2: #f7f8fa;
  --panel: #ffffff;
  --panel-2: #f2f4f6;
  --brand-blue: #3182f6;
  --brand-purple: #7b61ff;
  --brand-pink: #f04452;
  --brand-gradient: #3182f6;
  --green: #00c471;
  --coral: #f04452;
  --blue: #3182f6;
  --teal: #00a3ff;
  --shadow: 0 16px 40px rgba(25, 31, 40, 0.08);
  --soft-shadow: 0 8px 24px rgba(25, 31, 40, 0.06);
  --header-bg: rgba(255, 255, 255, 0.92);
  --header-line: rgba(229, 232, 235, 0.82);
  --control-bg: #ffffff;
  --strong-panel: #191f28;
  --nav-hover: #f2f4f6;
  --accent-soft: #e8f3ff;
  --accent-soft-strong: #dbeafe;
  --green-soft: #e9fbf2;
  --coral-soft: #fff0f1;
  --image-bg: #f2f4f6;
  --focus-ring: #e8f3ff;
}

body {
  background: var(--paper);
  color: var(--ink);
}

.site-header {
  gap: 18px;
  border-bottom-color: var(--header-line);
  background: var(--header-bg);
  box-shadow: none;
}

.brand {
  flex: 0 1 auto;
}

:root .brand-logo {
  content: url("/assets/studio/assets/logo/creatorbus-wordmark-white.png");
}

:root[data-theme="light"] .brand-logo {
  content: url("/assets/studio/assets/logo/creatorbus-wordmark-secondary.png");
}

.site-nav {
  margin-left: auto;
}

.site-nav a {
  background: transparent;
  color: var(--ink-soft);
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--nav-hover);
  color: var(--ink);
}

.site-nav .nav-cta,
.site-nav .nav-cta.active {
  background: var(--brand-blue);
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 0;
}

.theme-toggle,
.nav-toggle {
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  box-shadow: none;
  cursor: pointer;
}

.theme-toggle {
  display: inline-grid;
}

.nav-toggle {
  display: none;
}

.theme-toggle:hover,
.nav-toggle:hover {
  border-color: var(--brand-blue);
  background: var(--accent-soft);
  color: var(--brand-blue);
}

.theme-toggle:focus-visible,
.nav-toggle:focus-visible,
.site-nav a:focus-visible,
.button:focus-visible,
.portfolio-tab:focus-visible,
.package-combo-list a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

.theme-toggle svg,
.nav-toggle svg {
  width: 18px;
  height: 18px;
}

.page-hero,
.studio-hero,
.proof-section {
  border-bottom-color: var(--line);
  background: var(--paper);
}

.section.muted,
.price-band,
.equipment-section {
  background: var(--paper-2);
}

.metric,
.package-card,
.package-mini-card,
.package-tool-card,
.studio-item,
.work-card,
.contact-form,
.contact-aside,
.package-row,
.equipment-card,
.prop-card,
.flow li,
.portfolio-summary a,
.space-spec-list li,
.space-image-wrap,
.option-table-wrap,
.service-panel,
.benefit-highlight,
.multi-pass,
.coupon-policy,
.refund-policy,
.studio-photo-grid figure {
  border-color: var(--line);
  background: var(--panel);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.metric.highlight,
.package-card.featured,
.contact-aside,
.cta-band,
.site-footer {
  border-color: var(--line);
  background: var(--strong-panel);
  color: #fff;
}

:root .package-mini-card.emphasis {
  border-color: rgba(255, 102, 128, 0.35);
  background:
    linear-gradient(135deg, rgba(106, 167, 255, 0.18), rgba(255, 102, 128, 0.16)),
    var(--panel);
  color: var(--ink);
}

h2,
h3,
h4,
.package-row h2,
.coupon-rule-card h4,
.service-steps strong,
.notice-checklist strong,
.price-compare-row span:first-child,
.price-compare-row span:nth-child(2),
.multi-pass-heading h3,
.multi-pass-row span:first-child,
.multi-pass-row strong,
.refund-row span:first-child,
.faq-list summary,
.metric strong,
.portfolio-summary strong,
.package-mini-card.emphasis h3 {
  color: var(--ink);
}

p,
dd,
li,
label,
.section-heading p:not(.eyebrow),
.copy-stack p,
.proof-layout p,
.studio-item p,
.flow p,
.contact-aside p,
.package-tool-card p,
.package-mini-card p,
.package-row p,
.work-card p,
.equipment-card p,
.prop-card p,
.notice-card p,
.coupon-rule-card p,
.coupon-exclusion-list,
.refund-policy p,
.service-steps p,
.faq-list p,
.portfolio-summary span,
.studio-photo-grid figcaption,
.space-image-wrap figcaption,
.contact-mail-panel p {
  color: var(--ink-soft);
}

.page-hero p,
.service-footnote {
  color: var(--muted);
}

.hero .eyebrow,
.package-hero .eyebrow,
.package-hero h1,
.package-hero p:not(.eyebrow),
.metric.highlight strong,
.metric.highlight span,
.metric.highlight p,
.package-card.featured h3,
.package-card.featured p,
.contact-aside h2,
.contact-aside p,
.contact-aside li,
.cta-band h2,
.site-footer,
.site-footer a,
.site-footer .footer-info {
  color: rgba(255, 255, 255, 0.86);
}

.metric.highlight strong,
.contact-aside h2,
.cta-band h2 {
  color: #fff;
}

.button.primary {
  background: var(--brand-blue);
  color: #fff;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.eyebrow,
.eyebrow.dark,
.flow span,
.form-status,
.mini-links a,
.package-portfolio-link,
.text-link,
.equipment-card a,
.work-meta,
.option-row span:nth-child(2),
.refund-row span:last-child {
  color: var(--brand-blue);
}

.tag,
.tag.blue {
  background: var(--accent-soft);
  color: var(--brand-blue);
}

.tag.green {
  background: var(--green-soft);
  color: var(--green);
}

.tag.coral {
  background: var(--coral-soft);
  color: var(--coral);
}

.mini-meta span,
.work-tags span,
.package-row dl div,
.package-combo-panel,
.package-combo-list a,
.option-row,
.price-compare-row,
.benefit-highlight,
.benefit-item,
.benefit-rules li,
.multi-pass-row,
.notice-card,
.coupon-rule-card,
.refund-row,
.service-steps li,
.faq-list details,
.service-jump-nav a,
.mail-address,
.prop-video {
  border-color: var(--line);
  background: var(--panel-2);
  color: var(--ink-soft);
}

.price-compare-head,
.multi-pass-head,
.refund-head,
.notice-card span,
.service-steps span {
  background: var(--accent-soft);
  color: var(--brand-blue);
}

.coupon-rule-card span {
  background: var(--coral-soft);
  color: var(--coral);
}

.multi-pass-row strong,
.multi-pass-head {
  color: var(--green);
}

.multi-pass-head {
  background: var(--green-soft);
}

.portfolio-tabs {
  border-color: var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.portfolio-tab {
  color: var(--ink-soft);
}

.portfolio-tab.is-active,
.portfolio-tab.is-active[data-portfolio-filter="basic"],
.portfolio-tab.is-active[data-portfolio-filter="standard"],
.portfolio-tab.is-active[data-portfolio-filter="custom"] {
  background: var(--brand-blue);
  color: #fff;
}

.work-card img,
.slot-visual,
.equipment-card img,
.equipment-visual,
.space-image-wrap img,
.studio-photo-grid img {
  background: var(--image-bg);
}

.equipment-card img,
.equipment-visual {
  background: #fff;
}

input,
select,
textarea {
  border-color: var(--line);
  background: var(--control-bg);
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-blue);
  outline: 3px solid var(--focus-ring);
}

::placeholder {
  color: var(--muted);
}

.package-hero {
  background:
    linear-gradient(90deg, rgba(7, 10, 15, 0.9) 0%, rgba(7, 10, 15, 0.66) 52%, rgba(7, 10, 15, 0.36) 100%),
    linear-gradient(0deg, rgba(7, 10, 15, 0.62), rgba(7, 10, 15, 0.1)),
    url("/assets/studio/assets/studio/space-wide-2.jpg") center 42% / cover no-repeat;
}

.package-hero .service-jump-nav a {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.package-hero .service-jump-nav a:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.service-jump-nav a:hover,
.package-combo-list a:hover {
  background: var(--accent-soft);
  color: var(--brand-blue);
}

.service-steps li:not(:last-child)::after {
  border-color: var(--accent-soft-strong);
  background: var(--panel);
  color: var(--brand-blue);
  box-shadow: var(--soft-shadow);
}

.package-card:hover,
.package-mini-card:hover,
.package-tool-card:hover,
.studio-item:hover,
.work-card:hover,
.equipment-card:hover,
.prop-card:hover,
.flow li:hover,
.portfolio-summary a:hover,
.package-row:hover,
.package-combo-list a:hover {
  border-color: var(--accent-soft-strong);
  box-shadow: var(--soft-shadow);
}

.mail-address {
  color: var(--brand-blue);
}

@media (max-width: 980px) {
  .site-nav {
    margin-left: 0;
    border-color: var(--line);
    background: var(--header-bg);
    box-shadow: var(--soft-shadow);
  }

  .nav-toggle {
    display: inline-grid;
  }

  .header-actions {
    margin-left: auto;
  }
}

/* Readability guardrails for Korean copy and compact UI labels. */
:where(h1, h2, h3, h4, p, li, dd, label, figcaption, .hero-copy, .page-hero p, .section-heading p, .copy-stack p, .work-card h2, .work-card p, .work-meta, .contact-mail-panel h2) {
  word-break: keep-all;
  overflow-wrap: break-word;
}

:where(p, li, dd, figcaption, .work-card p, .section-heading p:not(.eyebrow)) {
  text-wrap: pretty;
}

:where(.site-nav a, .button, .portfolio-tab, .tag, .work-tags span, .mini-meta span, .theme-toggle, .nav-toggle) {
  white-space: nowrap;
}

:where(.work-card > div:last-child, .package-card, .package-mini-card, .package-tool-card, .studio-item, .equipment-card, .prop-card, .notice-card, .coupon-rule-card, .contact-form, .contact-aside) {
  min-width: 0;
}


/* TASK015C — Studio micro-site ↔ CreatorBus home link integration.
   Studio Web의 독립 header/footer는 유지하고, 본사 복귀 링크만 시각적으로 최소 추가한다. */
.creatorbus-home-link {
  font-weight: 800;
}

.site-nav .creatorbus-home-link {
  color: var(--brand-blue);
}

.site-nav .creatorbus-home-link:hover {
  color: var(--ink);
}

.footer-home-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
