:root {
  --bg: #f7f3ea;
  --ink: #151515;
  --muted: #65615b;
  --line: rgba(21, 21, 21, 0.12);
  --panel: #ffffff;
  --green: #214f42;
  --red: #bb3f32;
  --blue: #315b78;
  --gold: #c29335;
  --sea: #1f7a7a;
  --lapis: #224f91;
  --coral: #d76a4a;
  --moss: #667746;
  --paper: #f4eddf;
  --shadow: 0 22px 70px rgba(30, 26, 20, 0.16);
  --font-display: "Paperlogy Display", "Paperlogy Text", "Pretendard Variable", Pretendard, "Noto Sans KR", sans-serif;
  --font-heading: "Paperlogy Text", "Pretendard Variable", Pretendard, "Noto Sans KR", sans-serif;
  --font-text: "Paperlogy Text", "Pretendard Variable", Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  --measure: 64ch;
  --measure-narrow: 46ch;
  --lh-heading: 1.18;
  --lh-body: 1.78;
}

@font-face {
  font-family: "Paperlogy Text";
  src: url("./assets/fonts/Paperlogy-3Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy Text";
  src: url("./assets/fonts/Paperlogy-4Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy Text";
  src: url("./assets/fonts/Paperlogy-5Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy Text";
  src: url("./assets/fonts/Paperlogy-6SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy Text";
  src: url("./assets/fonts/Paperlogy-7Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy Display";
  src: url("./assets/fonts/Paperlogy-8ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy Display";
  src: url("./assets/fonts/Paperlogy-9Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-text);
  letter-spacing: 0;
  word-break: keep-all;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

p {
  max-width: var(--measure);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(120deg, rgba(187, 63, 50, 0.08), transparent 32%),
    linear-gradient(240deg, rgba(49, 91, 120, 0.1), transparent 36%),
    var(--bg);
}

body.no-motion *,
body.no-motion *::before,
body.no-motion *::after {
  animation: none !important;
  transition: none !important;
}

img {
  display: block;
  max-width: 100%;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
}

.utility-bar {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  min-height: 34px;
  padding: 8px clamp(20px, 5vw, 64px);
  background: #151515;
  color: rgba(255, 250, 240, 0.76);
  font-size: 12px;
  font-weight: 750;
}

.pointer-light {
  position: fixed;
  left: var(--pointer-x, 50vw);
  top: var(--pointer-y, 40vh);
  z-index: -1;
  width: 36vmax;
  height: 36vmax;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 244, 203, 0.22), rgba(255, 244, 203, 0.07) 34%, transparent 68%);
  opacity: 0.9;
  transition: opacity 240ms ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(247, 243, 234, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green);
  color: #fff7de;
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 420px);
  align-items: end;
  gap: clamp(20px, 5vw, 64px);
  padding: clamp(28px, 5vw, 72px);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -18% 40%;
  z-index: -1;
  height: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 231, 151, 0.2), transparent);
  transform: rotate(-8deg);
  filter: blur(12px);
  animation: slowSweep 7s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 15, 13, 0.84), rgba(12, 15, 13, 0.42) 48%, rgba(12, 15, 13, 0.16)),
    linear-gradient(0deg, rgba(12, 15, 13, 0.44), rgba(12, 15, 13, 0.06) 48%, rgba(12, 15, 13, 0.18));
  z-index: -1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(calc(1.04 + var(--scroll-progress, 0) * 0.08));
  transition: transform 120ms linear;
}

.hero-content {
  width: min(760px, 100%);
  padding-bottom: clamp(28px, 8vh, 96px);
  color: #fffaf0;
}

.studio-info {
  align-self: end;
  margin-bottom: clamp(28px, 8vh, 96px);
  padding: 24px;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 8px;
  background: rgba(13, 15, 14, 0.52);
  color: #fffaf0;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.studio-info p {
  margin: 18px 0 22px;
  color: rgba(255, 250, 240, 0.82);
  line-height: 1.65;
}

.info-weather {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.info-weather span,
.info-grid span,
.now-feature span,
.now-list span,
.portal-rail span,
.journal-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.info-weather strong {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.16);
}

.info-grid a {
  display: grid;
  gap: 8px;
  min-height: 86px;
  padding: 14px;
  background: rgba(255, 250, 240, 0.08);
}

.info-grid strong {
  font-size: 18px;
}

.eyebrow,
.section-kicker,
.work-type {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  margin: 16px 0 22px;
  max-width: 700px;
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 54ch;
  margin: 0;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.82;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fffaf0;
}

.button.dark {
  background: #151515;
  color: #fffaf0;
}

.button.light {
  width: fit-content;
  background: #fffaf0;
  color: var(--green);
}

.experience-strip {
  overflow: hidden;
  padding: 18px 0;
  background: #151515;
  color: #fffaf0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.strip-track {
  display: flex;
  width: max-content;
  gap: clamp(22px, 5vw, 58px);
  padding-left: 100%;
  animation: marquee 34s linear infinite;
}

.strip-track span {
  position: relative;
  white-space: nowrap;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  line-height: 1;
}

.strip-track span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(clamp(22px, 5vw, 58px) * -0.5);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.intro,
.backend-note,
.contact-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.intro h2,
.backend-note h2,
.contact-section h2,
.section-heading h2 {
  font-family: var(--font-heading);
  margin: 10px 0 0;
  max-width: 12em;
  font-size: clamp(26px, 3.1vw, 40px);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: 0;
}

.intro p,
.backend-note p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: var(--lh-body);
}

.values-section,
.now-section,
.brand-portal,
.journal-section {
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.values-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 15, 13, 0.92), rgba(12, 15, 13, 0.72)),
    url("./assets/bandi-hero.png") center / cover no-repeat;
  color: #fffaf0;
}

.values-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 231, 151, 0.18), transparent 28%),
    linear-gradient(0deg, rgba(12, 15, 13, 0.86), rgba(12, 15, 13, 0.32));
  pointer-events: none;
}

.values-section .section-heading,
.values-section .values-grid {
  position: relative;
  z-index: 1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.15);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.15);
}

.values-grid article {
  display: grid;
  align-content: space-between;
  min-height: 390px;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 250, 240, 0.06);
}

.values-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.values-grid h3 {
  font-family: var(--font-heading);
  margin: 72px 0 18px;
  font-size: clamp(30px, 3.7vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.values-grid p {
  margin: 0;
  color: rgba(255, 250, 240, 0.75);
  line-height: var(--lh-body);
}

.now-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.78fr);
  gap: 16px;
}

.now-feature {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  background: #101312;
  color: #fffaf0;
}

.now-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.now-feature:hover img {
  transform: scale(1.04);
}

.now-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10, 12, 11, 0.88), rgba(10, 12, 11, 0.24) 58%, rgba(10, 12, 11, 0.08)),
    linear-gradient(90deg, rgba(10, 12, 11, 0.42), transparent 58%);
}

.now-feature div {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: clamp(24px, 4vw, 44px);
}

.now-feature h3 {
  font-family: var(--font-heading);
  margin: 10px 0 14px;
  max-width: 12em;
  font-size: clamp(27px, 2.8vw, 38px);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: 0;
}

.now-feature p {
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
  max-width: 43ch;
  font-size: 16px;
  line-height: 1.82;
}

.now-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.now-list article {
  display: grid;
  align-content: start;
  min-height: 130px;
  padding: 22px 24px;
  background: #fbf8f0;
}

.now-list strong {
  display: block;
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.now-list p {
  max-width: 38ch;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.work-section,
.services-section {
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(31, 122, 122, 0.14), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(34, 79, 145, 0.12), transparent 30%),
    linear-gradient(180deg, #f8f2e8 0%, #eee9de 100%);
}

.services-section::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -120px;
  height: 320px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(31, 122, 122, 0.2), transparent 58%),
    linear-gradient(180deg, rgba(34, 79, 145, 0.08), transparent);
  transform: rotate(-2deg);
  pointer-events: none;
}

.services-section .section-heading,
.services-section .service-list {
  position: relative;
  z-index: 1;
}

.wave-mark {
  position: absolute;
  inset: auto clamp(20px, 5vw, 64px) 34px auto;
  width: min(42vw, 520px);
  height: 120px;
  pointer-events: none;
  opacity: 0.72;
}

.wave-mark span {
  position: absolute;
  left: 0;
  right: 0;
  height: 38px;
  border: 2px solid transparent;
  border-top-color: rgba(31, 122, 122, 0.32);
  border-radius: 50%;
}

.wave-mark span:nth-child(1) {
  top: 10px;
}

.wave-mark span:nth-child(2) {
  top: 42px;
  border-top-color: rgba(194, 147, 53, 0.3);
  transform: translateX(36px);
}

.wave-mark span:nth-child(3) {
  top: 74px;
  border-top-color: rgba(34, 79, 145, 0.24);
  transform: translateX(-22px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-note {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  text-align: right;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.work-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(30, 26, 20, 0.08);
  transform: translateY(22px);
  opacity: 0;
  transition:
    transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1),
    opacity 700ms ease,
    box-shadow 220ms ease;
}

.work-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.work-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.work-card img {
  width: 100%;
  height: clamp(210px, 18vw, 280px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  background: #e8e2d4;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.work-card:first-child img {
  object-position: center 82%;
}

.work-card:nth-child(3) img {
  object-position: center top;
}

.work-card:hover img {
  transform: scale(1.04);
}

.work-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 250px;
  padding: 24px;
}

.work-body h3 {
  font-family: var(--font-heading);
  margin: 10px 0 12px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}

.work-body p:not(.work-type) {
  margin: 0;
  max-width: 36ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f0ece3;
  color: #4e4941;
  font-size: 12px;
  font-weight: 600;
}

.brand-portal {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 4.4vw, 58px);
  align-items: center;
  background: #efe7d7;
}

.portal-copy h2 {
  font-family: var(--font-heading);
  margin: 10px 0 18px;
  max-width: 11em;
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.portal-copy p {
  margin: 0 0 26px;
  color: var(--muted);
  max-width: 56ch;
  font-size: 16px;
  line-height: 1.8;
}

.portal-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.portal-rail article {
  display: grid;
  align-content: space-between;
  min-height: 320px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(30, 26, 20, 0.08);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.portal-rail article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.portal-rail img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 16px;
  border-radius: 8px;
  background: #f3eee4;
}

.portal-rail strong {
  font-family: var(--font-heading);
  display: block;
  margin-top: 8px;
  font-size: clamp(20px, 1.9vw, 25px);
  font-weight: 700;
}

.showcase-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(320px, 0.85fr);
  min-height: 100svh;
  background: #101312;
  color: #fffaf0;
  overflow: hidden;
}

.stage-visual {
  position: sticky;
  top: 0;
  min-height: 100svh;
}

.stage-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 19, 18, 0.04), rgba(16, 19, 18, 0.58)),
    linear-gradient(0deg, rgba(16, 19, 18, 0.48), transparent 46%);
}

.stage-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 520ms ease,
    transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.stage-image[data-stage-image="sea"] {
  object-position: center bottom;
}

.stage-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.stage-panel {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 34px;
  min-height: 100svh;
  padding: clamp(28px, 6vw, 82px);
}

.stage-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stage-tab {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.08);
  color: rgba(255, 250, 240, 0.78);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.stage-tab.is-active {
  background: #fffaf0;
  color: #101312;
}

.stage-copy {
  display: none;
  max-width: 560px;
}

.stage-copy.is-active {
  display: block;
  animation: copyRise 520ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.stage-copy h2 {
  font-family: var(--font-heading);
  margin: 12px 0 18px;
  max-width: 12em;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: 0;
}

.stage-copy p {
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: var(--lh-body);
}

.journal-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(215, 106, 74, 0.16), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(31, 122, 122, 0.16), transparent 32%),
    linear-gradient(135deg, #f7f0e4 0%, #eee9de 48%, #f8f4eb 100%);
}

.journal-section::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 18px;
  pointer-events: none;
}

.journal-section .section-heading {
  position: relative;
  z-index: 1;
}

.journal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  overflow: visible;
  border: 0;
  border-radius: 8px;
}

.journal-grid article {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.18)),
    var(--paper);
  box-shadow: 0 14px 44px rgba(31, 28, 22, 0.08);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.journal-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--note-color, var(--gold));
}

.journal-grid article::after {
  content: "";
  position: absolute;
  right: -54px;
  top: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(194, 147, 53, 0.18);
  background: color-mix(in srgb, var(--note-color, var(--gold)) 24%, transparent);
}

.journal-grid article:nth-child(1) {
  --note-color: var(--coral);
}

.journal-grid article:nth-child(2) {
  --note-color: var(--lapis);
}

.journal-grid article:nth-child(3) {
  --note-color: var(--moss);
}

.journal-grid article:nth-child(4) {
  --note-color: var(--sea);
}

.journal-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(31, 28, 22, 0.16);
}

.journal-grid h3 {
  font-family: var(--font-heading);
  margin: 0;
  align-self: end;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: 0;
}

.journal-grid span {
  position: relative;
  z-index: 1;
  color: var(--note-color, var(--gold));
}

.journal-grid h3 {
  position: relative;
  z-index: 1;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  overflow: visible;
}

.service-list article {
  position: relative;
  min-height: 280px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.18)),
    var(--paper);
  box-shadow: 0 14px 44px rgba(31, 28, 22, 0.08);
  transition:
    background 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-list article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--service-color, var(--gold));
}

.service-list article::after {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -82px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(194, 147, 53, 0.24);
  border: 1px solid color-mix(in srgb, var(--service-color, var(--gold)) 42%, transparent);
  border-radius: 46% 54% 48% 52%;
  background: radial-gradient(circle at 40% 38%, rgba(194, 147, 53, 0.14), transparent 58%);
  background:
    radial-gradient(circle at 40% 38%, color-mix(in srgb, var(--service-color, var(--gold)) 18%, transparent), transparent 58%);
  transform: rotate(18deg);
}

.service-list article:nth-child(1) {
  --service-color: var(--coral);
}

.service-list article:nth-child(2) {
  --service-color: var(--lapis);
}

.service-list article:nth-child(3) {
  --service-color: var(--sea);
}

.service-list article:nth-child(4) {
  --service-color: var(--moss);
}

.service-list article:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.26)),
    #fffaf0;
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(31, 28, 22, 0.16);
}

.service-list span {
  position: relative;
  z-index: 1;
  color: var(--service-color, var(--red));
  font-weight: 700;
}

.service-list h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  margin: 60px 0 12px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0;
}

.service-list p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: var(--lh-body);
}

.backend-note {
  background: var(--green);
  color: #fffaf0;
}

.backend-note p {
  color: rgba(255, 250, 240, 0.8);
}

.community-copy {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.contact-section {
  align-items: center;
  background: #efe7d7;
}

.contact-section .button {
  justify-self: end;
  width: min(100%, 260px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.site-footer > div {
  display: grid;
  gap: 8px;
}

.site-footer strong {
  font-family: var(--font-heading);
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.footer-business {
  max-width: min(760px, 100%);
  text-align: right;
}

.footer-business span {
  display: block;
  line-height: 1.55;
  white-space: normal;
}

@keyframes slowSweep {
  from {
    transform: translateX(-12%) rotate(-8deg);
    opacity: 0.44;
  }
  to {
    transform: translateX(12%) rotate(-8deg);
    opacity: 0.84;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes copyRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .work-grid,
  .service-list,
  .intro,
  .backend-note,
  .contact-section,
  .hero,
  .now-layout,
  .brand-portal,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .studio-info {
    align-self: start;
    margin-bottom: 0;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(36px, 6vw, 52px);
  }

  .portal-rail,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .showcase-stage {
    grid-template-columns: 1fr;
  }

  .stage-visual {
    position: relative;
    min-height: 58svh;
  }

  .stage-panel {
    min-height: auto;
  }

  .contact-section .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .utility-bar {
    justify-content: space-between;
    gap: 10px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    overflow-x: auto;
  }

  .hero {
    min-height: 700px;
  }

  .hero h1 {
    font-size: clamp(31px, 8.8vw, 40px);
    line-height: 1.16;
  }

  .hero-copy br {
    display: none;
  }

  .hero-copy {
    font-size: 16px;
    line-height: var(--lh-body);
  }

  .strip-track span {
    font-size: 19px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(12, 15, 13, 0.68), rgba(12, 15, 13, 0.36)),
      linear-gradient(90deg, rgba(12, 15, 13, 0.44), rgba(12, 15, 13, 0));
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-business {
    text-align: left;
  }

  .service-list article {
    min-height: 220px;
  }

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

  .info-grid {
    grid-template-columns: 1fr;
  }

  .now-feature {
    min-height: 480px;
  }

  .portal-rail article,
  .journal-grid article {
    min-height: 230px;
  }

  .wave-mark {
    width: 78vw;
    opacity: 0.36;
    transform: translateY(22px);
  }

  .pointer-light {
    display: none;
  }

  .stage-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .stage-tab {
    border-radius: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
