:root {
  color-scheme: light;
  --ink: #17342b;
  --muted: #66756b;
  --paper: #fffdf6;
  --leaf: #1f4f3a;
  --mint: #e3f8ed;
  --sky: #e7f6ff;
  --gold: #f3c84b;
  --ruby: #7d1631;
  --line: rgba(31, 79, 58, 0.16);
  --shadow: 0 22px 60px rgba(23, 52, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family:
    Manrope,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(227, 248, 237, 0.95), transparent 28rem),
    radial-gradient(circle at 88% 10%, rgba(231, 246, 255, 0.9), transparent 28rem),
    linear-gradient(180deg, #fffdf6 0%, #f8fcf5 48%, #eef8f8 100%);
}

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

img {
  display: block;
}

.page-shell {
  width: min(520px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.brand-hero {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 24px 0 18px;
}

.logo-frame {
  width: min(220px, 58vw);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 1px solid rgba(31, 79, 58, 0.12);
  border-radius: 8px;
  background: #fbf8ef;
  box-shadow: var(--shadow);
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eyebrow,
.category-kicker {
  margin: 0;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin-top: 24px;
}

h1,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(2.5rem, 9vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.intro {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.category-hub {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.category-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.category-card.record {
  background:
    linear-gradient(135deg, rgba(227, 248, 237, 0.96), rgba(255, 255, 255, 0.86)),
    #fff;
}

.category-card.scene {
  background:
    linear-gradient(135deg, rgba(255, 248, 219, 0.95), rgba(255, 255, 255, 0.88)),
    #fff;
}

.category-card.project {
  background:
    linear-gradient(135deg, rgba(255, 237, 244, 0.92), rgba(255, 255, 255, 0.88)),
    #fff;
}

.card-copy p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.link-stack {
  display: grid;
  gap: 12px;
}

.line-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  border: 1px solid rgba(31, 79, 58, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 13px 15px;
  text-align: left;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.line-link:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 79, 58, 0.32);
  box-shadow: 0 14px 34px rgba(23, 52, 43, 0.12);
}

.line-link strong,
.line-link small {
  display: block;
}

.line-link strong {
  font-size: 0.98rem;
  font-weight: 800;
}

.line-link small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.brand-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(31, 79, 58, 0.08);
}

.brand-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.instagram-icon {
  background: linear-gradient(135deg, #7c3aed, #f97316 55%, #facc15);
}

.instagram-icon img {
    filter: brightness(0) invert(1);
}

.project-icon {
    overflow: hidden;
    background: #fbf8ef;
}

.project-icon img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.letter-icon {
    color: #fff;
    font-weight: 900;
}

.letter-icon.garnet {
  background: var(--ruby);
}

.letter-icon.ilwol {
  background: var(--gold);
  color: #3f3112;
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 24px, 520px);
    padding: 28px 0 48px;
  }

  .category-hub {
    margin-top: 34px;
  }

  .category-card {
    padding: 18px;
  }

  .line-link {
    min-height: 64px;
  }
}

@media (max-width: 420px) {
  .brand-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-icon img {
    width: 26px;
    height: 26px;
  }

  .line-link {
    gap: 12px;
    padding: 12px;
  }
}
