:root {
  --bg: #fff7e8;
  --ink: #171713;
  --muted: #6f665c;
  --paper: #fffdf6;
  --leaf: #155f3b;
  --acid: #d7ef48;
  --rose: #f05c78;
  --clay: #d86f3f;
  --line: rgba(23, 23, 19, 0.16);
  --shadow: 0 28px 80px rgba(23, 23, 19, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Noto Sans KR",
    sans-serif;
  letter-spacing: 0;
}

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

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 clamp(20px, 4vw, 56px);
  color: #fff;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 247, 232, 0.9);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-weight: 950;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 900;
}

.header-cta {
  justify-self: end;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 950;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-tint {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 112%;
  height: 112%;
  transform: translate(-5%, -4%);
  object-position: center;
}

.hero-tint {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 10, 8, 0.78), rgba(10, 10, 8, 0.34) 43%, rgba(10, 10, 8, 0.08)),
    linear-gradient(0deg, rgba(10, 10, 8, 0.7), transparent 48%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(780px, 100%);
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  padding: 110px clamp(22px, 5vw, 72px) clamp(84px, 12vh, 132px);
  color: #fff;
}

.brand-kicker,
.board-heading span,
.order-copy > span,
.studio-copy > span,
.notice-head span,
.inquiry-copy > span,
.visit span {
  color: var(--acid);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
}

h1 {
  display: grid;
  width: min(740px, 100%);
  margin-bottom: 24px;
  font-size: clamp(48px, 6.7vw, 96px);
  font-weight: 950;
  line-height: 0.98;
  word-break: keep-all;
}

h1 span,
h2 {
  overflow-wrap: normal;
  word-break: keep-all;
}

.hero-copy p {
  display: grid;
  gap: 5px;
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.66;
}

.hero-copy p span {
  display: block;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 23px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.button.primary {
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 20px 40px rgba(215, 239, 72, 0.24);
}

.button.ghost,
.button.outline {
  border: 1px solid currentColor;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
}

.hero-ticket {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: clamp(26px, 6vw, 76px);
  z-index: 3;
  display: grid;
  width: min(300px, 76vw);
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(23, 23, 19, 0.58);
  backdrop-filter: blur(16px);
}

.hero-ticket span {
  color: var(--acid);
  font-size: 13px;
  font-weight: 950;
}

.hero-ticket strong {
  font-size: 24px;
}

.hero-ticket small {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.section-reveal {
  opacity: 1;
  transform: none;
}

.price-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  min-height: 640px;
  border-bottom: 1px solid var(--line);
}

.board-heading {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 116px) clamp(24px, 5vw, 72px);
  background: var(--acid);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 950;
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.price-list article {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.price-list article:nth-child(2),
.price-list article:nth-child(3) {
  background: #ffe3df;
}

.price-list span,
.notice-list span {
  color: var(--clay);
  font-size: 13px;
  font-weight: 950;
}

.price-list p,
.studio-copy p,
.inquiry-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

.price-list strong {
  color: var(--leaf);
  font-size: 20px;
}

.order-system {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  min-height: 720px;
  background: var(--ink);
  color: #fff;
}

.order-image {
  min-height: 520px;
}

.order-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 104px);
}

.order-copy h2 {
  margin: 18px 0 38px;
}

.order-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.order-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.order-list strong {
  color: var(--acid);
}

.order-list span {
  color: rgba(255, 255, 255, 0.78);
}

.studio-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(70px, 10vw, 138px) clamp(22px, 5vw, 72px);
}

.studio-copy {
  display: grid;
  gap: 20px;
  max-width: 600px;
}

.text-link {
  width: fit-content;
  border-bottom: 2px solid currentColor;
  color: var(--leaf);
  font-weight: 950;
}

.studio-strip img {
  min-height: 520px;
  border-radius: 0 0 80px 0;
  box-shadow: var(--shadow);
}

.notice {
  padding: clamp(72px, 10vw, 132px) clamp(22px, 5vw, 72px);
  background: var(--leaf);
  color: #fff;
}

.notice-head {
  display: grid;
  gap: 14px;
  max-width: 840px;
  margin-bottom: 42px;
}

.notice-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.notice-list a {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 120px;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.notice-list time {
  color: var(--acid);
  font-weight: 950;
}

.notice-list strong {
  font-size: clamp(20px, 2.8vw, 34px);
  line-height: 1.25;
}

.notice-list span {
  color: rgba(255, 255, 255, 0.74);
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 520px);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(22px, 5vw, 72px);
}

.inquiry-copy {
  display: grid;
  gap: 20px;
}

.inquiry-copy img {
  margin-top: 18px;
  height: min(440px, 42vw);
  min-height: 320px;
  border-radius: 80px 0 0 0;
  box-shadow: var(--shadow);
}

.inquiry-panel {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 16px 16px 0 var(--acid);
}

label {
  display: grid;
  gap: 8px;
  color: #38362f;
  font-size: 14px;
  font-weight: 950;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 15px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.full {
  width: 100%;
}

.embed-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr) auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 9vw, 118px) clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

dl {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--leaf);
  font-weight: 950;
}

dd {
  margin: 0;
  font-weight: 850;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  padding: 34px 22px 42px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  font-size: 14px;
}

.site-footer span {
  color: #fff;
  font-weight: 950;
}

.mobile-order {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 70;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 18px 44px rgba(23, 23, 19, 0.26);
  font-weight: 950;
  transform: translateY(120%);
  transition: transform 180ms ease;
}

.mobile-order.is-visible {
  transform: translateY(0);
}

@media (hover: hover) {
  .button:hover,
  .header-cta:hover,
  .notice-list a:hover {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .price-board,
  .order-system,
  .studio-strip,
  .inquiry,
  .visit {
    grid-template-columns: 1fr;
  }

  .hero-ticket {
    right: 22px;
    bottom: 26px;
  }

  .price-list {
    border-left: 0;
  }

  .mobile-order {
    display: flex;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 0 18px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .header-cta {
    display: none;
  }

  .hero-copy {
    width: auto;
    margin: 0 20px;
    padding: 96px 0 300px;
  }

  .brand-kicker,
  .board-heading span,
  .order-copy > span,
  .studio-copy > span,
  .notice-head span,
  .inquiry-copy > span,
  .visit span {
    font-size: 11px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions {
    width: min(100%, calc(100vw - 40px));
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .hero-ticket {
    right: 20px;
    bottom: 86px;
    left: 20px;
    width: auto;
    padding: 16px;
  }

  .price-board,
  .notice,
  .inquiry,
  .visit {
    padding: 70px 20px;
  }

  .board-heading {
    min-height: 360px;
    padding: 68px 20px;
  }

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

  .price-list article {
    min-height: 210px;
    padding: 24px;
  }

  .order-image {
    min-height: 360px;
  }

  .order-copy {
    padding: 58px 20px 68px;
  }

  .order-list li,
  .notice-list a,
  dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .studio-strip {
    padding: 70px 20px;
  }

  .studio-strip img,
  .inquiry-copy img {
    height: auto;
    min-height: 360px;
    border-radius: 0 0 54px 0;
  }

  .inquiry-panel {
    box-shadow: 8px 8px 0 var(--acid);
  }

  .visit {
    gap: 28px;
  }

  .site-footer {
    padding-bottom: 96px;
  }
}
