@font-face {
  font-family:"Oceanwave Display";
  font-style:normal;
  font-weight:800 900;
  font-display:block;
  src:url(/site-assets/assets/oceanwave-montserrat.woff2) format("woff2");
}
@font-face {
  font-family:"Oceanwave Tagline";
  font-style:normal;
  font-weight:400;
  font-display:block;
  src:url(/site-assets/assets/oceanwave-tagline-jost.woff2) format("woff2");
}
:root {
  --ink:#eeeade;
  --muted:#d2dce1;
  --navy:#102d3e;
  --gutter:clamp(24px,4.16vw,80px);
  --footer-height:112px;
  color-scheme:dark;
}
* {
  box-sizing:border-box;
}
html {
  min-height:100%;
  scroll-behavior:smooth;
  scrollbar-width:none;
}
html::-webkit-scrollbar {
  display:none;
}
body {
  margin:0;
  min-height:100svh;
  display:flex;
  flex-direction:column;
  background:#102536 var(--ocean-preview) center/cover no-repeat fixed;
  color:var(--ink);
  font-family:"Jost","Noto Sans KR",sans-serif;
  -webkit-font-smoothing:antialiased;
}
html[data-page="home"],body[data-page="home"] {
  height:100%;
  overflow:hidden;
  overscroll-behavior:none;
}
a {
  color:inherit;
  text-decoration:none;
}
button {
  font:inherit;
}
button,a {
  -webkit-tap-highlight-color:transparent;
}
a:focus-visible,button:focus-visible {
  outline:2px solid var(--ink);
  outline-offset:7px;
}
[hidden] {
  display:none!important;
}
::selection {
  color:#0e2f45;
  background:#cae8f7;
}
.scene {
  position:fixed;
  z-index:-2;
  inset:0;
  overflow:hidden;
  pointer-events:none;
  background:#102536 var(--ocean-preview) center/cover no-repeat;
}
.scene img {
  height:100%;
  width:100%;
  object-fit:cover;
  object-position:50% 50%;
  filter:brightness(.80) saturate(.86);
}
.scrim {
  position:fixed;
  z-index:-1;
  inset:0;
  pointer-events:none;
  opacity:0;
  transition:opacity .55s;
  background:rgba(4,19,30,.28);
}
body:not([data-page="home"]) .scrim {
  opacity:1;
}
body[data-page="works"] .scrim {
  background:rgba(4,19,30,.20);
}
.site-header {
  position:fixed;
  z-index:10;
  inset:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:clamp(25px,3.2vh,42px) var(--gutter);
}
.site-header::before {
  content:"";
  position:absolute;
  inset:0 0 -25px;
  z-index:-1;
  background:linear-gradient(rgba(7,23,35,.38),rgba(7,23,35,.14) 65%,transparent);
  pointer-events:none;
}
.brand {
  font-size:26px;
  font-weight:600;
  letter-spacing:.025em;
  line-height:1.5;
}
.site-nav {
  display:flex;
  align-items:center;
  gap:clamp(20px,2.25vw,38px);
}
.site-nav a {
  position:relative;
  font-family:"Manrope","Helvetica Neue",Arial,sans-serif;
  font-size:16px;
  letter-spacing:.065em;
  font-weight:600;
  line-height:32px;
  text-transform:uppercase;
}
.site-nav a::after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:1px;
  height:1px;
  background:currentColor;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .22s;
}
.site-nav a:hover::after,.site-nav a[aria-current="page"]::after {
  transform:scaleX(1);
}
.skip {
  position:fixed;
  z-index:30;
  top:-80px;
  left:20px;
  padding:12px 18px;
  background:#eeeade;
  color:#102d3e;
}
.skip:focus {
  top:15px;
}
#main {
  flex:1;
  display:flex;
  flex-direction:column;
}
.interior {
  animation:appear .4s ease both;
}
.hero {
  position:relative;
  height:100svh;
  min-height:0;
  overflow:hidden;
}
.hero-lockup {
  position:absolute;
  top:39.8%;
  left:50%;
  transform:translateX(-50%);
  width:90%;
  text-align:center;
  -webkit-user-select:none;
  user-select:none;
  cursor:default;
}
.hero h1 {
  margin:0;
  font-family:"Oceanwave Display","Montserrat",sans-serif;
  font-size:min(10.6vw,20svh);
  font-weight:800;
  font-synthesis:none;
  letter-spacing:-.045em;
  line-height:.82;
  white-space:nowrap;
}
.hero-tagline {
  margin:11px 0 0;
  font-family:"Oceanwave Tagline",sans-serif;
  font-size:clamp(17px,1.3vw,23px);
  letter-spacing:.08em;
  font-weight:400;
  white-space:nowrap;
}
.interior {
  --page-top:clamp(126px,12svh,156px);
  flex:1;
  display:flex;
  flex-direction:column;
  padding:var(--page-top) var(--gutter) 38px;
}
/* Use one title position for both reading pages, independent of paragraph length.
   This is top spacing only: longer content stays free to grow and scroll. */
.reading-page {
  padding-top:max(var(--page-top),calc(50svh - 360px));
}
.reading-page>.copy-column {
  margin-block:0;
}
.page-title {
  font-family:"Manrope","Helvetica Neue",Arial,sans-serif;
  font-size:clamp(25px,2.3vw,32px);
  font-weight:500;
  line-height:1.3;
  letter-spacing:.11em;
  text-transform:uppercase;
  margin:0 0 30px;
  text-align:center;
}
.works-content,.copy-column,.contact-column {
  flex-shrink:0;
  margin:auto;
}
.works-content {
  width:min(68vw,860px);
}
.work-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px 20px;
}
.works-pagination {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:24px;
  margin-top:24px;
}
.page-arrow {
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  padding:0;
  border:0;
  background:transparent;
  color:var(--ink);
  opacity:.85;
  cursor:pointer;
  transition:opacity .2s;
}
.page-arrow svg {
  width:26px;
  height:26px;
  transition:transform .2s;
}
.page-arrow:hover:not(:disabled) {
  opacity:1;
}
.page-arrow[data-direction="previous"]:hover:not(:disabled) svg {
  transform:translateX(-3px);
}
.page-arrow[data-direction="next"]:hover:not(:disabled) svg {
  transform:translateX(3px);
}
.page-arrow:disabled {
  opacity:.24;
  cursor:default;
}
.works-page-count {
  color:var(--muted);
  font-size:13px;
  letter-spacing:.14em;
  font-variant-numeric:tabular-nums;
  min-width:64px;
  text-align:center;
}
.work {
  min-width:0;
  display:block;
}
.art {
  display:block;
  position:relative;
  aspect-ratio:1;
  overflow:hidden;
  border-radius:2px;
  background:#1d3544;
}
.art img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  inset:0;
  transition:transform .5s ease,filter .4s;
}
.art-fallback {
  display:flex;
  position:absolute;
  inset:0;
  align-items:center;
  justify-content:center;
  padding:22px;
  text-align:center;
  font-size:16px;
  color:#d7dfe3;
}
.art.loaded .art-fallback {
  display:none;
}
.art.unavailable .art-fallback::after {
  content:"커버를 불러오지 못했어요";
  position:absolute;
  bottom:15px;
  left:8px;
  right:8px;
  font-size:10px;
  color:#a7bbc8;
}
.work:hover img {
  transform:scale(1.025);
  filter:brightness(.86);
}
/* Reserve the same caption space on every album page, including wrapped names. */
.caption {
  display:block;
  text-align:center;
  line-height:1.5;
  font-size:13px;
  min-height:calc(13px + 4.65em);
  padding:13px 3px 0;
  letter-spacing:.012em;
}
.caption strong {
  display:block;
  font-size:13.5px;
  font-weight:500;
}
.caption>span {
  display:block;
  color:#d7e0e4;
  font-weight:400;
}
.copy-column {
  width:min(720px,100%);
}
/* All interior pages share one spacing rule and scroll with the document. */
.copy-column,.contact-column {
  padding:0;
  background:transparent;
}
.about-copy .prose {
  font-size:16px;
  line-height:1.95;
  text-align:center;
}
.about-copy .prose strong {
  font-weight:500;
  color:var(--ink);
}
.prose {
  font-family:"Noto Sans KR",sans-serif;
  font-size:16px;
  font-weight:400;
  line-height:1.95;
  word-break:keep-all;
  overflow-wrap:break-word;
  color:#edf0ef;
  letter-spacing:-.015em;
}
.prose p {
  margin:0 0 26px;
}
.prose p:last-child {
  margin-bottom:0;
}
.copy-column.philosophy-copy {
  width:min(720px,100%);
}
.philosophy-copy .prose {
  text-align:center;
  text-wrap:pretty;
}
.philosophy-copy strong {
  font-weight:500;
  color:var(--ink);
}
.contact-column {
  width:min(488px,100%);
}
.contact-form {
  display:grid;
  gap:20px;
  font-family:"Noto Sans KR",sans-serif;
}
.contact-form label {
  display:block;
  font-size:14px;
  line-height:1.5;
  font-weight:500;
  color:#edf0ef;
  margin-bottom:9px;
}
.contact-form input,.contact-form textarea {
  display:block;
  width:100%;
  border:1px solid #b5cbd16b;
  border-radius:0;
  background:rgba(5,24,38,.38);
  color:var(--ink);
  font:inherit;
  font-size:16px;
  padding:10px 12px;
  box-shadow:none;
  transition:border-color .2s,background .2s;
}
.contact-form input {
  height:44px;
}
.contact-form textarea {
  min-height:130px;
  resize:vertical;
  line-height:1.7;
}
.contact-form input:focus,.contact-form textarea:focus {
  outline:1px solid #c5e1ed;
  outline-offset:2px;
  border-color:#c5e1ed;
  background:rgba(5,24,38,.42);
}
.form-actions {
  text-align:center;
  padding-top:14px;
}
.submit-button {
  border:0;
  border-radius:0;
  padding:10px 27px;
  min-height:41px;
  background:var(--ink);
  color:#102d3e;
  font-size:13.5px;
  cursor:pointer;
  transition:background .2s;
}
.submit-button:hover {
  background:#fffdf5;
}
.contact-socials {
  display:flex;
  gap:28px;
  justify-content:center;
  margin-top:40px;
}
.contact-socials a {
  display:grid;
  place-items:center;
  min-width:28px;
  min-height:30px;
  color:#d5e1e7;
  transition:color .2s;
}
.contact-socials a:hover {
  color:#fff;
}
.contact-socials svg {
  width:20px;
  height:20px;
}
.form-status {
  margin:0;
  text-align:center;
  font-size:12px;
  line-height:1.8;
  color:#cce0e9;
}
.site-footer {
  position:relative;
  flex-shrink:0;
  isolation:isolate;
  display:grid;
  grid-template-columns:1fr;
  justify-items:center;
  align-content:center;
  gap:4px;
  min-height:var(--footer-height);
  padding:20px var(--gutter) max(24px,env(safe-area-inset-bottom));
  color:#dce5e9;
  font-size:12.5px;
  line-height:1.7;
  letter-spacing:.015em;
  text-align:center;
}
.site-footer::before {
  content:"";
  position:absolute;
  z-index:-1;
  inset:-56px 0 0;
  background:linear-gradient(0deg,rgba(4,18,30,.80),rgba(4,18,30,.50) 55%,transparent);
  pointer-events:none;
}
.footer-email {
  justify-self:center;
  font-size:13.5px;
  text-decoration:underline;
  text-decoration-color:transparent;
  text-underline-offset:4px;
  transition:color .2s,text-decoration-color .2s;
}
.footer-email:hover {
  color:var(--ink);
  text-decoration-color:currentColor;
}
.footer-registration {
  font-family:"Noto Sans KR",sans-serif;
  font-size:12px;
  letter-spacing:0;
}
.footer-copyright {
  justify-self:center;
}
.site-footer > * {
  max-width:100%;
  overflow-wrap:anywhere;
}
body[data-page="home"] .site-footer {
  position:fixed;
  inset:auto 0 0;
}
.asset-error {
  position:fixed;
  z-index:35;
  left:24px;
  right:24px;
  bottom:24px;
  max-width:620px;
  padding:18px 22px;
  background:#eeeade;
  color:#102d3e;
  border-radius:3px;
  font-size:14px;
}
@keyframes appear {
  from {
    opacity:0;
    transform:translateY(5px);
  }
  to {
    opacity:1;
    transform:none;
  }
}
@media(max-width:1050px) {
  .work-grid {
    column-gap:16px;
  }
  .caption {
    min-height:calc(13px + 6.25em);
  }
  .scene img {
    object-position:62% 50%;
  }
  .site-nav {
    gap:24px;
  }
}
@media(max-width:700px) {
  :root {
    --gutter:24px;
    --footer-height:116px;
  }
  .site-header {
    display:block;
    padding:21px var(--gutter) 16px;
    text-align:center;
  }
  .brand {
    font-size:23px;
  }
  .site-nav {
    margin:17px auto 0;
    flex-wrap:wrap;
    gap:4px 8px;
    justify-content:space-between;
    width:100%;
    max-width:360px;
  }
  .site-nav a {
    font-size:clamp(11px,3.25vw,13px);
    line-height:28px;
    letter-spacing:.035em;
  }
  .site-header::before {
    background:linear-gradient(rgba(6,25,39,.43),rgba(6,25,39,.16) 72%,transparent);
  }
  .scene img {
    object-position:73% 50%;
  }
  .hero-lockup {
    width:88%;
    top:41%;
  }
  .hero h1 {
    font-size:min(15.3vw,74px,20svh);
  }
  .hero-tagline {
    font-size:14px;
    letter-spacing:.06em;
    margin-top:16px;
  }
  .interior {
    --page-top:154px;
    padding-bottom:36px;
  }
  .page-title {
    font-size:23px;
    letter-spacing:.09em;
    margin-bottom:30px;
  }
  .works-content,.copy-column {
    width:100%;
  }
  .work-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:29px 15px;
  }
  .caption {
    font-size:12px;
    min-height:calc(10px + 6.25em);
    padding-top:10px;
  }
  .caption strong {
    font-size:12.5px;
  }
  body[data-page="works"] .scrim {
    background:rgba(4,19,30,.24);
  }
  .about-copy .prose {
    font-size:15px;
    line-height:1.95;
  }
  .desktop-break {
    display:none;
  }
  .prose {
    font-size:15px;
    line-height:1.95;
    max-width:36em;
    margin-inline:auto;
  }
  .copy-column.philosophy-copy,.contact-column {
    width:100%;
  }
  .philosophy-copy .prose {
    font-size:15px;
    line-height:1.95;
  }
  .contact-form {
    gap:19px;
  }
  .contact-socials {
    margin-top:32px;
  }
  .site-footer {
    grid-template-columns:1fr;
    justify-items:center;
    gap:3px;
    padding:16px var(--gutter) max(22px,env(safe-area-inset-bottom));
    font-size:12px;
  }
  .footer-email,.footer-copyright {
    justify-self:center;
  }
  .footer-email {
    font-size:12.5px;
  }
  .footer-registration {
    font-size:11.5px;
  }
}
/* Short desktop windows: leave more room for the shared footer. */
@media(min-width:701px) and (max-height:1000px) {
  .interior {
    --page-top:110px;
    padding-bottom:12px;
  }
}
/* Short windows use normal flow so the header, hero and footer cannot overlap. */
@media(max-height:500px) {
  html[data-page="home"],body[data-page="home"] {
    height:auto;
    overflow:visible;
    overscroll-behavior:auto;
  }
  .site-header {
    position:relative;
    padding:16px var(--gutter);
  }
  .interior {
    --page-top:24px;
  }
  #home {
    flex:1;
    display:flex;
    flex-direction:column;
  }
  .hero {
    flex:1;
    display:grid;
    place-items:center;
    height:auto;
    min-height:160px;
    padding:24px 0;
  }
  .hero-lockup {
    position:static;
    transform:none;
  }
  .hero-tagline {
    font-size:14px;
    margin-top:10px;
  }
  .site-footer {
    min-height:94px;
    padding-block:8px;
    gap:2px;
    font-size:11px;
  }
  body[data-page="home"] .site-footer {
    position:relative;
    inset:auto;
  }
  .footer-email {
    font-size:12px;
  }
  .footer-registration {
    font-size:11px;
  }
}
@media(max-width:360px) {
  :root {
    --gutter:18px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*::before,*::after {
    animation:none!important;
    transition:none!important;
  }
}
