:root {
  --bg: #080806;
  --paper: #f5f0e7;
  --paper-soft: #e8ddcc;
  --ink: #f7f1e8;
  --muted: #b7aa99;
  --line: rgba(245, 240, 231, 0.18);
  --gold: #c6a15b;
  --red: #d64432;
  --charcoal: #14120f;
  --shadow: 0 28px 80px rgba(0,0,0,.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.72;
  word-break: keep-all;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.15) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 50%, rgba(255,255,255,.12) 0 1px, transparent 1px);
  background-size: 13px 13px, 19px 19px;
  mix-blend-mode: screen;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(8, 8, 6, .76);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .18em;
  font-size: 18px;
  font-weight: 700;
}
.nav {
  display: flex;
  gap: 20px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav a:hover { color: var(--ink); }

main, .footer { position: relative; z-index: 1; }
.section {
  padding: clamp(74px, 10vw, 140px) clamp(20px, 5vw, 82px);
  border-top: 1px solid var(--line);
}
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .75fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 82px) clamp(70px, 9vw, 130px);
}

.hero {
  min-height: 92vh;
  background:
    radial-gradient(circle at 15% 10%, rgba(198,161,91,.20), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.05), transparent 40%);
}
.eyebrow, .section-kicker, .label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}
h1, h2, h3 {
  margin: 0;
  line-height: .96;
  letter-spacing: -.045em;
}
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 14vw, 210px);
  font-weight: 400;
  text-transform: uppercase;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7.4vw, 112px);
  font-weight: 400;
}
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 400;
}
.dek {
  margin: 18px 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.4vw, 56px);
  line-height: 1.04;
  color: var(--paper-soft);
}
.lead {
  max-width: 760px;
  font-size: clamp(17px, 1.7vw, 22px);
  color: var(--paper-soft);
}
strong { color: #fff; font-weight: 800; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); }
.button.primary { background: var(--paper); color: var(--bg); border-color: var(--paper); }

.tilt-card {
  transform: rotate(2deg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--charcoal);
  padding: 10px;
}
.tilt-card.reverse { transform: rotate(-1.6deg); }
.tilt-card img { width: 100%; object-fit: cover; filter: contrast(1.05); }
figcaption {
  padding: 12px 6px 2px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .06em;
  line-height: 1.5;
}

.marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--bg);
  white-space: nowrap;
}
.marquee div {
  display: flex;
  gap: 48px;
  padding: 16px 0;
  animation: scroll 28s linear infinite;
}
.marquee span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 54px);
  letter-spacing: -.03em;
  text-transform: uppercase;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.editorial h2 { max-width: 1080px; }
.columns {
  display: grid;
  gap: 40px;
  margin-top: 42px;
  color: var(--paper-soft);
  font-size: clamp(17px, 1.5vw, 20px);
}
.columns.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.columns p { margin: 0; }

.split-feature, .guitar-section, .instagram-section {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}
.profile-card {
  margin: 0;
  background: var(--paper);
  padding: 12px;
  box-shadow: var(--shadow);
}
.profile-card img { width: 100%; filter: contrast(1.04); }
.feature-copy p, .guitar-copy p, .insta-copy p, .manifesto p {
  color: var(--paper-soft);
  font-size: clamp(17px, 1.5vw, 20px);
}

.works {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(198,161,91,.08));
}
.works h2 { max-width: 980px; }
.work-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 18px;
  margin-top: 38px;
}
.work-card {
  min-height: 420px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.work-card.major {
  background: var(--paper);
  color: var(--bg);
}
.work-card.major .label { color: var(--red); }
.work-card p { color: var(--paper-soft); }
.work-card.major p { color: #332b21; }
.text-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.work-card.major .text-link { color: var(--red); }

.guitar-section {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
}
.studio-shot { margin: 0; }
.studio-shot img { aspect-ratio: 3/4; object-fit: cover; object-position: center top; }

.media-section h2, .link-room h2 { margin-bottom: 38px; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.video-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding: 14px;
}
.video-card h3 {
  font-size: clamp(25px, 3vw, 42px);
  margin: 18px 4px 0;
}
.video-card p {
  margin: 10px 4px 8px;
  color: var(--muted);
}
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.instagram-section {
  grid-template-columns: minmax(0, .72fr) minmax(340px, 1fr);
  background: var(--paper);
  color: var(--bg);
}
.instagram-section .section-kicker { color: var(--red); }
.instagram-section p { color: #3f362b; }
.instagram-section .button { color: var(--bg); border-color: rgba(8,8,6,.25); }
.insta-grid {
  margin: 0;
  border: 1px solid rgba(8,8,6,.14);
  background: #111;
  box-shadow: var(--shadow);
}
.insta-grid img { width: 100%; }

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.link-grid a {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .2s ease, background .2s ease;
}
.link-grid a:hover { transform: translateY(-3px); background: rgba(255,255,255,.08); }
.link-grid span {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.link-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.manifesto {
  text-align: center;
  max-width: 1180px;
  margin: 0 auto;
  border-top: 0;
}
.manifesto h2 { margin: 0 auto 30px; }
.manifesto p { max-width: 860px; margin: 0 auto 24px; }
.final-line {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold) !important;
  font-size: clamp(24px, 4vw, 56px) !important;
  line-height: 1.05;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 82px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.footer p { margin: 0; }

@media (max-width: 980px) {
  .section-grid, .split-feature, .guitar-section, .instagram-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .work-grid, .video-grid, .link-grid, .columns.two { grid-template-columns: 1fr; }
  .work-card { min-height: auto; }
  .nav { display: none; }
  .hero-portrait { max-width: 560px; margin: 0 auto; }
}

@media (max-width: 560px) {
  .site-header { padding: 14px 18px; }
  .brand { font-size: 15px; }
  .section, .section-grid { padding-left: 18px; padding-right: 18px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .footer { flex-direction: column; }
}

.media-note {
  max-width: 860px;
  margin: 18px 0 34px;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 18px);
}
.video-links {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.video-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}
.video-links a:hover { color: var(--ink); }

/* Fixed media cards: no iframe embed, no YouTube error 153. */
.watch-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(198,161,91,.16), rgba(255,255,255,.03)),
    #111;
  border: 1px solid var(--line);
}
.watch-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transform: scale(1.02);
  transition: transform .25s ease, opacity .25s ease, filter .25s ease;
  filter: contrast(1.08) saturate(.9);
}
.watch-poster:hover img {
  transform: scale(1.065);
  opacity: .96;
  filter: contrast(1.12) saturate(1.02);
}
.play-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(8,8,6,.82);
  color: var(--paper);
  border: 1px solid rgba(245,240,231,.35);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.video-card:hover {
  background: rgba(255,255,255,.065);
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.public-trace {
  background:
    radial-gradient(circle at 86% 12%, rgba(214,68,50,.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(198,161,91,.055));
}
.public-trace h2 { max-width: 1200px; }
.trace-lead {
  max-width: 920px;
  color: var(--paper-soft);
  font-size: clamp(17px, 1.5vw, 20px);
  margin: 30px 0 38px;
}
.trace-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1180px) { .trace-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .button-row { flex-direction: column; } .trace-grid { grid-template-columns: 1fr; } }

.technical-note {
  max-width: 760px;
  margin: 44px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: .02em;
  opacity: .42;
}


/* Cheer board / guestbook */
.cheer-board {
  background:
    radial-gradient(circle at 8% 16%, rgba(198,161,91,.18), transparent 34%),
    radial-gradient(circle at 90% 80%, rgba(214,68,50,.12), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.055));
}
.cheer-board h2 { max-width: 1180px; }
.cheer-lead {
  max-width: 940px;
  margin: 30px 0 42px;
  color: var(--paper-soft);
  font-size: clamp(17px, 1.5vw, 20px);
}
.cheer-layout {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}
.cheer-form {
  border: 1px solid var(--line);
  background: rgba(245,240,231,.07);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow);
}
.cheer-form label {
  display: block;
  margin-bottom: 18px;
}
.cheer-form label span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.cheer-form input,
.cheer-form textarea,
.cheer-form select {
  width: 100%;
  border: 1px solid rgba(245,240,231,.22);
  background: rgba(8,8,6,.72);
  color: var(--ink);
  border-radius: 0;
  padding: 14px 15px;
  font: inherit;
  outline: none;
}
.cheer-form input:focus,
.cheer-form textarea:focus,
.cheer-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,161,91,.14);
}
.cheer-form textarea { resize: vertical; min-height: 150px; }
.submit-button { width: 100%; border-radius: 0; margin-top: 6px; }
.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.hidden-field { display: none; }
.cheer-wall {
  display: grid;
  gap: 16px;
}
.cheer-wall article {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--bg);
  padding: clamp(22px, 3vw, 34px);
  min-height: 170px;
}
.cheer-wall article span {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.cheer-wall article p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.thanks-card h1 { font-size: clamp(66px, 12vw, 170px); }
.thanks-card p {
  color: var(--paper-soft);
  font-size: clamp(18px, 2vw, 24px);
  max-width: 760px;
  margin-bottom: 34px;
}
@media (max-width: 980px) {
  .cheer-layout { grid-template-columns: 1fr; }
}

/* 2026-06 Idol-bright revision: luminous fanpage tone */
:root {
  --bg: #fff9fb;
  --paper: #ffffff;
  --paper-soft: #fff2f7;
  --ink: #1d1720;
  --muted: #766b78;
  --line: rgba(214, 88, 158, 0.18);
  --gold: #ff8f2c;
  --red: #ff4f9a;
  --charcoal: #ffffff;
  --shadow: 0 26px 74px rgba(255, 87, 160, .18), 0 10px 34px rgba(91, 122, 255, .14);
}
body {
  background:
    radial-gradient(circle at 12% 5%, rgba(255, 143, 44, .24), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(255, 79, 154, .22), transparent 31%),
    radial-gradient(circle at 64% 50%, rgba(84, 169, 255, .16), transparent 34%),
    linear-gradient(180deg, #fff9fb 0%, #f7fbff 52%, #fff8e9 100%);
  color: var(--ink);
}
.grain {
  opacity: .16;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 79, 154, .20) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 50%, rgba(72, 157, 255, .18) 0 1px, transparent 1px);
}
.site-header {
  background: rgba(255, 255, 255, .76);
  border-bottom: 1px solid rgba(255, 79, 154, .16);
  box-shadow: 0 10px 34px rgba(255, 79, 154, .08);
}
.nav { color: #7b6b80; }
.nav a:hover, .brand { color: #211925; }
.hero {
  min-height: 92vh;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 79, 154, .24), transparent 34%),
    radial-gradient(circle at 74% 18%, rgba(84, 169, 255, .22), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,244,248,.8) 45%, rgba(239,248,255,.72));
}
h1, h2, h3 { text-shadow: 0 1px 0 rgba(255,255,255,.88); }
.dek, .lead, .columns, .feature-copy p, .guitar-copy p, .insta-copy p, .manifesto p, .trace-lead, .cheer-lead {
  color: #4a3f4e;
}
.eyebrow, .section-kicker, .label {
  color: #ff4f9a;
}
strong { color: #111; }
.button {
  background: rgba(255,255,255,.70);
  color: #211925;
  border-color: rgba(255, 79, 154, .22);
  box-shadow: 0 10px 24px rgba(255, 79, 154, .08);
}
.button:hover {
  border-color: rgba(255, 79, 154, .48);
  background: rgba(255,255,255,.95);
  box-shadow: 0 16px 34px rgba(255, 79, 154, .18);
}
.button.primary {
  background: linear-gradient(135deg, #ff4f9a, #ff8f2c 58%, #ffe48a);
  color: #fff;
  border-color: transparent;
  text-shadow: 0 1px 10px rgba(0,0,0,.18);
}
.tilt-card, .profile-card, .insta-grid, .studio-shot {
  background: rgba(255,255,255,.76);
  border-color: rgba(255, 79, 154, .18);
  box-shadow: var(--shadow);
  border-radius: 28px;
  overflow: hidden;
}
.tilt-card img, .profile-card img, .studio-shot img {
  filter: contrast(1.02) brightness(1.06) saturate(1.02);
}
figcaption { color: #7b6b80; }
.marquee {
  background: linear-gradient(90deg, #ff4f9a, #ff8f2c, #fff18a, #79d7ff, #bba0ff);
  color: #fff;
  border-color: rgba(255,255,255,.5);
  text-shadow: 0 2px 18px rgba(70, 20, 60, .28);
}
.section { border-top-color: rgba(255, 79, 154, .13); }

.idol-canon {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 79, 154, .22), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(99, 185, 255, .22), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,243,248,.9));
}
.idol-canon h2 { max-width: 1200px; }
.canon-lead {
  max-width: 1040px;
  margin: 30px 0 40px;
  color: #4a3f4e;
  font-size: clamp(17px, 1.5vw, 21px);
}
.canon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.canon-card {
  min-height: 430px;
  padding: clamp(24px, 3vw, 38px);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  color: #221823;
  position: relative;
  overflow: hidden;
}
.canon-card::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
  filter: blur(2px);
}
.canon-card span {
  color: rgba(33,25,37,.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.canon-card h3 { font-size: clamp(34px, 4.2vw, 62px); }
.canon-card p { color: rgba(33,25,37,.78); }
.canon-card.crown { background: linear-gradient(135deg, #fff1a8, #ffb86d 48%, #ff6aa9); }
.canon-card.pink { background: linear-gradient(135deg, #ffe3ef, #ff78b6 52%, #ffd36b); }
.canon-card.blue { background: linear-gradient(135deg, #e4f7ff, #84d6ff 48%, #c5a8ff); }

.media-section, .works, .guitar-section, .cheer-board, .public-trace {
  background: rgba(255,255,255,.42);
}
.media-section h2, .link-room h2 { margin-bottom: 38px; }
.video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.video-card {
  border-color: rgba(255, 79, 154, .16);
  background: rgba(255,255,255,.74);
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(255, 79, 154, .10);
  overflow: hidden;
}
.video-card p { color: #6c6070; }
.video-card:hover { background: #fff; transform: translateY(-4px); }
.watch-poster {
  border-color: rgba(255,255,255,.76);
  border-radius: 20px;
  background: linear-gradient(135deg, #ffeff6, #e9f7ff);
}
.watch-poster img { opacity: .94; filter: contrast(1.02) saturate(1.12) brightness(1.04); }
.play-badge {
  background: rgba(255,255,255,.86);
  color: #211925;
  border-color: rgba(255,79,154,.24);
  box-shadow: 0 12px 28px rgba(255, 79, 154, .16);
}
.spotlight-video {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,239,247,.92));
  border-color: rgba(255, 79, 154, .32);
}
.video-links { border-top-color: rgba(255, 79, 154, .14); }
.video-links a, .text-link { color: #ff4f9a; }
.video-links a:hover { color: #ff8f2c; }
.media-note { color: #7b6b80; }

.work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.work-card {
  min-height: 440px;
  border-radius: 32px;
  border-color: rgba(255, 79, 154, .16);
  background: rgba(255,255,255,.76);
  box-shadow: 0 18px 44px rgba(255, 79, 154, .10);
}
.work-card p { color: #594e5c; }
.work-card.major {
  background: linear-gradient(135deg, #fff1a8, #ffb86d 46%, #ff6aa9);
  color: #221823;
}
.work-card.commercial {
  background: linear-gradient(135deg, #ffe3ef, #ff79b9 52%, #ffd36b);
  color: #221823;
}
.work-card:nth-child(3) {
  background: linear-gradient(135deg, #e4f7ff, #84d6ff 48%, #c5a8ff);
  color: #221823;
}
.work-card.major p, .work-card.commercial p, .work-card:nth-child(3) p { color: rgba(33,25,37,.78); }
.work-card:nth-child(4) {
  grid-column: 1 / -1;
  min-height: auto;
  background: rgba(255,255,255,.82);
}

.instagram-section {
  background: linear-gradient(135deg, #ffffff, #fff1f7 46%, #e9f7ff);
  color: #211925;
}
.instagram-section .section-kicker { color: #ff4f9a; }
.instagram-section p { color: #4a3f4e; }
.instagram-section .button { color: #211925; border-color: rgba(255, 79, 154, .22); }
.link-grid a {
  background: rgba(255,255,255,.70);
  border-color: rgba(255, 79, 154, .16);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(255, 79, 154, .08);
}
.link-grid a:hover { background: #fff; box-shadow: 0 18px 44px rgba(255, 79, 154, .15); }
.link-grid span { color: #ff4f9a; }
.public-trace {
  background:
    radial-gradient(circle at 86% 12%, rgba(255,79,154,.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,244,248,.8));
}
.cheer-board {
  background:
    radial-gradient(circle at 8% 16%, rgba(255,143,44,.18), transparent 34%),
    radial-gradient(circle at 90% 80%, rgba(99,185,255,.20), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,239,247,.75));
}
.cheer-form {
  background: rgba(255,255,255,.78);
  border-color: rgba(255, 79, 154, .16);
  border-radius: 28px;
}
.cheer-form input, .cheer-form textarea, .cheer-form select {
  background: rgba(255,255,255,.92);
  color: #211925;
  border-color: rgba(255, 79, 154, .24);
  border-radius: 16px;
}
.cheer-wall article {
  background: #fff;
  color: #211925;
  border-color: rgba(255, 79, 154, .16);
  border-radius: 28px;
  box-shadow: 0 16px 34px rgba(255, 79, 154, .10);
}
.cheer-wall article span { color: #ff4f9a; }
.footer {
  background: rgba(255,255,255,.76);
  color: #6c6070;
  border-top-color: rgba(255, 79, 154, .16);
}
.technical-note { border-top-color: rgba(255, 79, 154, .10); opacity: .62; }
@media (max-width: 1180px) {
  .video-grid, .work-grid, .canon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-card:nth-child(4) { grid-column: auto; }
}
@media (max-width: 980px) {
  .video-grid, .work-grid, .canon-grid { grid-template-columns: 1fr; }
}
