@font-face {
  font-family: 'Suit';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Thin.woff2')
    format('woff2');
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: 'Suit';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-ExtraLight.woff2')
    format('woff2');
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: 'Suit';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Light.woff2')
    format('woff2');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Suit';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2')
    format('woff2');
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Suit';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Medium.woff2')
    format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Suit';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-SemiBold.woff2')
    format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Suit';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Bold.woff2')
    format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Suit';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-ExtraBold.woff2')
    format('woff2');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Suit';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Heavy.woff2')
    format('woff2');
  font-weight: 900;
  font-display: swap;
}

:root {
  --paper: #e0f7fa;
  --ink: #101114;
  --font: 'Suit', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
body {
  position: relative;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-synthesis: none;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
body::before {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 49;
  height: env(safe-area-inset-top);
  background: #063e42;
  content: '';
  pointer-events: none;
}
body:has(.top-header.is-visible)::before {
  background: rgb(224 247 250 / 72%);
}
body:has(.top-header.is-menu-open)::before {
  background: #e0f7fa;
}
a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: #073f43;
  transform: translateY(calc(-100% - 24px));
  transition: transform 160ms ease;
}
.skip-link:focus {
  transform: translateY(0);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #d8f7fa;
  color: #073f43;
}
.hero__visual,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__visual {
  z-index: -3;
  object-fit: cover;
  transform: scale(1.02);
  animation: breathe 16s ease-in-out infinite alternate;
}
.hero__shade {
  z-index: -2;
  background:
    linear-gradient(
      180deg,
      rgb(255 255 255 / 12%) 0%,
      transparent 42%,
      rgb(0 96 100 / 14%) 100%
    ),
    linear-gradient(
      90deg,
      rgb(224 247 250 / 30%) 0%,
      rgb(224 247 250 / 8%) 48%,
      transparent 100%
    );
}
.hero-intro {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-items: center;
  visibility: hidden;
  padding: 30px;
  background: #e0f7fa;
  opacity: 0;
  pointer-events: none;
}
.hero-intro__lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #073f43;
  font-size: clamp(48px, 8.5vw, 132px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-align: left;
}
.hero-intro__line {
  display: block;
  min-height: 1em;
  opacity: 0;
  transform: translateX(40px);
  font-weight: 100;
}
.hero-intro.is-active {
  visibility: visible;
  opacity: 1;
  animation: hero-intro-fade 1s ease 4.5s forwards;
}
.hero-intro.is-active .hero-intro__line {
  animation: hero-intro-line 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-intro.is-active .hero-intro__line:nth-child(1) {
  animation-delay: 0.5s;
}
.hero-intro.is-active .hero-intro__line:nth-child(2) {
  animation-delay: 1s;
}
.hero-intro.is-active .hero-intro__line:nth-child(3) {
  animation-delay: 1.5s;
}
.hero-intro.is-active .hero-intro__line:nth-child(4) {
  animation-delay: 2s;
}
.hero-intro.is-active .hero-intro__lines {
  animation: hero-intro-color-fade 1s ease 4.5s forwards;
}
body:has(.hero-intro.is-active) .dock-header {
  opacity: 0;
  pointer-events: none;
}
.hero-logo {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  visibility: hidden;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}
.hero-logo.is-visible {
  visibility: visible;
  opacity: 1;
}
.hero-logo__svg {
  display: block;
  width: min(72vw, 820px);
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 1px 1px rgb(255 255 255 / 78%))
    drop-shadow(0 3px 8px rgb(0 130 150 / 18%))
    drop-shadow(0 12px 32px rgb(0 110 135 / 16%));
}
.hero-logo__solid {
  opacity: 0;
}
.hero-logo__glass-glow {
  opacity: 0.32;
  filter: blur(2px);
}
.hero-logo__liquid {
  opacity: 0.72;
}
.hero-logo__glass-edge {
  opacity: 0.7;
}
.hero-logo.is-visible .hero-logo__solid {
  animation: hero-logo-solid-reveal 2s ease 7.5s forwards;
}
.hero-logo.is-visible .hero-logo__liquid {
  animation: hero-logo-liquid-fade 2s ease 7.5s forwards;
}
.hero-logo.is-visible .hero-logo__glass-glow,
.hero-logo.is-visible .hero-logo__glass-edge {
  animation: hero-logo-liquid-fade 2s ease 7.5s forwards;
}
.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-cue__arrow {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

.dock-header,
.top-header {
  position: fixed;
  z-index: 50;
  display: flex;
  align-items: center;
  will-change: transform, opacity;
  transition:
    transform 580ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms ease,
    background 360ms ease,
    box-shadow 280ms ease;
}
.dock-header::before,
.top-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 40%),
    0 14px 44px rgb(0 0 0 / 24%);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}
.dock-header {
  left: 50%;
  bottom: 20px;
  min-width: min(586px, calc(100vw - 24px));
  height: 68px;
  padding: 5px 7px;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 999px;
  color: #fff;
  background: rgb(16 22 30 / 28%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 38%),
    0 16px 46px rgb(0 0 0 / 28%);
  backdrop-filter: blur(30px) saturate(170%);
  -webkit-backdrop-filter: blur(30px) saturate(170%);
}
.dock-header::before {
  border: 0;
  background: linear-gradient(
    135deg,
    rgb(255 255 255 / 11%),
    transparent 42%,
    rgb(255 255 255 / 4%)
  );
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.dock-header.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}
.dock-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -58px) scale(0.96);
}
.top-header {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(74px + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) 30px 0;
  background: rgb(224 247 250 / 72%);
  box-shadow: 0 8px 28px rgb(16 17 20 / 6%);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}
.top-header::before {
  border-width: 0 0 1px;
  border-radius: 0;
  border-color: rgb(16 17 20 / 10%);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease;
}
.top-header.is-menu-open {
  background: #e0f7fa;
  box-shadow: none;
}
.top-header.is-menu-open::before {
  opacity: 0;
  transform: translateY(14px);
}
.top-header.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.top-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
}
.site-signature {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  height: 32px;
  justify-content: end;
  flex-direction: column;
}
.site-signature__logo {
  display: block;
  height: 24px;
  width: auto;
  mix-blend-mode: multiply;
}

.dock-nav,
.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dock-nav {
  gap: 2px;
}
.dock-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 58px;
  gap: 3px;
  border-radius: 999px;
  transition: background 220ms ease;
}
.dock-nav__item:hover,
.dock-nav__item:focus-visible,
.dock-nav__item.is-active {
  background: rgb(255 255 255 / 16%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 24%);
}
.dock-nav__item svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dock-nav__item span {
  font-size: 10px;
  font-weight: 300;
  white-space: nowrap;
}
.top-nav {
  margin-left: auto;
  gap: clamp(16px, 2.3vw, 38px);
}
.mobile-menu,
.mobile-menu-toggle {
  display: none;
}
.top-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: 42px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.top-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 220ms ease;
}
.top-nav a:hover::after,
.top-nav a:focus-visible::after {
  transform: scaleX(1);
}
.top-nav a.is-active {
  color: #006064;
  font-weight: 600;
}
.top-nav a.is-active::after {
  transform: scaleX(1);
}

.portfolio-sections {
  padding: 0;
}
.profile-section {
  min-height: 100svh;
  padding: 98px 30px 30px;
  scroll-margin-top: 0;
}
.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  grid-template-areas: 'profile journey' 'details journey';
  grid-template-rows: minmax(520px, 1fr) auto;
  gap: 18px;
  max-width: 1500px;
  min-height: calc(100svh - 128px);
  margin: 0 auto;
}
.profile-card,
.info-card,
.journey-card {
  border: 1px solid rgb(0 96 100 / 9%);
  border-radius: 30px;
  background: #b2ebf2;
  box-shadow: 0 16px 50px rgb(0 96 100 / 7%);
}
.profile-card {
  grid-area: profile;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 24px;
}
.profile-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.glass-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  border: 1px solid rgb(255 255 255 / 68%);
  border-radius: 999px;
  color: #073f43;
  background: rgb(255 255 255 / 34%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 82%),
    0 10px 24px rgb(0 96 100 / 8%);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}
.glass-control--label {
  min-width: 116px;
  padding: 0 24px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.035em;
}
.glass-control--arrow {
  width: 54px;
  transition:
    transform 220ms ease,
    background 220ms ease;
}
.glass-control--arrow:hover,
.glass-control--arrow:focus-visible {
  background: rgb(255 255 255 / 56%);
  transform: translateY(3px);
}
.glass-control--arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.profile-card__body {
  display: grid;
  grid-template-columns: minmax(180px, 34%) minmax(0, 1fr);
  align-items: center;
  align-content: center;
  gap: clamp(30px, 5vw, 78px);
  row-gap: clamp(16px, 2.4vw, 28px);
  flex: 1;
  padding: 28px clamp(8px, 3vw, 42px) 14px;
}
.profile-avatar {
  position: relative;
  grid-row: span 2;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 270px;
  overflow: hidden;
  border-radius: 50%;
  color: #317b80;
  background: rgb(224 247 250 / 72%);
  border: 1px solid rgb(255 255 255 / 70%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 82%),
    0 18px 42px rgb(0 96 100 / 10%);
}
.profile-avatar__image {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}
.profile-avatar__fallback {
  position: relative;
  z-index: 0;
  width: 54%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
}
.display-title {
  margin: 0;
  text-wrap: normal;
}
.display-title--profile {
  max-width: 620px;
  color: #073f43;
  font-size: clamp(36px, 3.4vw, 54px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.profile-card__body > p {
  grid-column: 2;
  margin: -20px 0 0;
  color: #205e62;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.5;
}
.profile-details {
  grid-area: details;
  display: grid;
  grid-template-columns: 0.55fr 1.22fr 1.45fr;
  gap: 18px;
}
.info-card {
  min-height: 148px;
  padding: 22px;
}
.info-card p,
.journey-card__eyebrow {
  margin: 0 0 34px;
  color: #317b80;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.info-card strong,
.info-card > a {
  display: block;
  overflow-wrap: anywhere;
  color: #073f43;
  font-size: clamp(17px, 1.45vw, 24px);
  font-weight: 700;
  letter-spacing: -0.035em;
}
.info-card--email > a {
  overflow-wrap: normal;
  white-space: nowrap;
}
.info-card > a:hover,
.info-card > a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
}
.skill-list span {
  position: relative;
  display: grid;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  place-items: center;
  isolation: isolate;
}
.skill-list img {
  display: block;
  width: clamp(30px, 2.2vw, 38px);
  filter: saturate(1.08) contrast(1.02) brightness(1.01)
    drop-shadow(0 2px 2px rgb(0 64 70 / 16%))
    drop-shadow(0 9px 12px rgb(0 96 100 / 14%));
  transition:
    filter 220ms ease,
    transform 220ms ease;
}
.skill-list span:hover img {
  filter: saturate(1.13) contrast(1.03) brightness(1.05)
    drop-shadow(0 3px 3px rgb(0 64 70 / 18%))
    drop-shadow(0 11px 16px rgb(0 96 100 / 20%));
  transform: translateY(-2px) scale(1.035);
}
.journey-card {
  grid-area: journey;
  padding: clamp(28px, 4vw, 58px);
}
.journey-card__eyebrow {
  margin-bottom: 12px;
}
.display-title--journey {
  margin: 0 0 clamp(34px, 5vw, 74px);
  color: #073f43;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.06em;
}
.journey-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.journey-list li {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgb(0 96 100 / 18%);
}
.journey-list time {
  color: #07575d;
  font-size: clamp(25px, 2.25vw, 36px);
  font-weight: 570;
  letter-spacing: -0.045em;
}
.journey-list p {
  align-self: center;
  margin: 0;
  color: #205e62;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.5;
  word-break: keep-all;
}
.branding-section {
  min-height: 100svh;
  padding: 98px 30px 72px;
  background: #e0f7fa;
}
.branding-shell {
  max-width: 1500px;
  margin: 0 auto;
}
.section-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}
.branding-feature {
  position: relative;
  margin-bottom: 76px;
}
.branding-preview {
  position: relative;
  height: clamp(360px, 48vw, 620px);
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 32px;
  background: #071018;
  box-shadow: 0 18px 54px rgb(0 96 100 / 9%);
}
.branding-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.branding-preview.img-location-fix img {
  object-position: center 18%;
}
.branding-preview figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: rgb(255 255 255 / 76%);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.branding-card {
  position: absolute;
  right: clamp(20px, 5vw, 74px);
  bottom: -38px;
  width: min(450px, calc(100% - 40px));
  padding: 28px;
  border: 0;
  border-radius: 28px;
  background: #b2ebf2;
  box-shadow: 0 22px 48px rgb(0 96 100 / 16%);
}
.branding-card__eyebrow {
  margin: 0 0 12px;
  color: #317b80;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.display-title--branding {
  color: #073f43;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.branding-card > p:not(.branding-card__eyebrow) {
  margin: 18px 0 22px;
  color: #205e62;
  font-size: 15px;
  line-height: 1.5;
}
.branding-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.branding-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgb(0 96 100 / 16%);
  border-radius: 999px;
  color: #073f43;
  background: rgb(224 247 250 / 58%);
  font-size: 12px;
  font-weight: 500;
  transition:
    background 180ms ease,
    transform 180ms ease;
}
.branding-actions a:hover,
.branding-actions a:focus-visible {
  background: rgb(224 247 250 / 90%);
  transform: translateY(-2px);
}
.resource-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0 8px 16px;
}
.resource-heading h3 {
  margin: 0;
  color: #073f43;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.025em;
}
.resource-heading span {
  color: #317b80;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
}
.resource-carousel {
  position: relative;
}
.resource-gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  min-width: 0;
  max-width: 100%;
  padding: 18px;
  border: 0;
  border-radius: 30px;
  background: rgb(178 235 242 / 72%);
  scrollbar-width: none;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}
.resource-gallery::-webkit-scrollbar {
  display: none;
}
.resource-card {
  flex: 0 0 clamp(170px, 17vw, 230px);
  min-width: 0;
  padding: 0;
  border: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.resource-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #071018;
  aspect-ratio: 1;
}
.resource-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}
.resource-card:hover .resource-card__image img,
.resource-card:focus-visible .resource-card__image img {
  transform: scale(1.06);
}
.resource-card__label {
  display: block;
  min-height: 1.25em;
  margin: 10px 4px 3px;
  overflow: hidden;
  color: #073f43;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.resource-card__meta {
  display: -webkit-box;
  min-height: calc(1.25em * 2);
  margin: 0 4px;
  overflow: hidden;
  color: #317b80;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  text-transform: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.resource-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgb(0 96 100 / 18%);
  border-radius: 50%;
  color: #073f43;
  background: rgb(224 247 250 / 88%);
  box-shadow: 0 8px 18px rgb(0 96 100 / 12%);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}
.resource-nav--prev {
  left: 18px;
}
.resource-nav--next {
  right: 18px;
}
.resource-nav:hover,
.resource-nav:focus-visible {
  transform: translateY(-50%) scale(1.05);
}
.resource-nav.is-hidden {
  display: none;
}
.resource-nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: max(40px, env(safe-area-inset-top))
    max(40px, env(safe-area-inset-right))
    max(40px, calc(40px + env(safe-area-inset-bottom)))
    max(40px, env(safe-area-inset-left));
  background: rgb(4 12 16 / 78%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lightbox.is-open {
  display: grid;
}
.lightbox__frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
}
.lightbox__title {
  max-width: min(92vw, 1100px);
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 0px 3px #000;
}
.lightbox__viewport {
  position: relative;
  display: grid;
  max-width: min(1100px, 92vw);
  max-height: calc(88vh - 88px);
  overflow: visible;
  border-radius: 18px;
  place-items: center;
  touch-action: none;
}
.lightbox__frame img {
  display: block;
  max-width: 100%;
  max-height: calc(88vh - 88px);
  border: 1px solid rgb(255 255 255 / 34%);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgb(0 0 0 / 42%);
  object-fit: contain;
  cursor: default;
  user-select: none;
  visibility: hidden;
  opacity: 0;
  will-change: transform;
}
.lightbox__frame img.is-ready {
  visibility: visible;
  opacity: 1;
}
.lightbox__video {
  display: none;
  max-width: 100%;
  max-height: calc(88vh - 88px);
  border: 1px solid rgb(255 255 255 / 34%);
  border-radius: 18px;
  background: #000;
  box-shadow: 0 24px 80px rgb(0 0 0 / 42%);
  object-fit: contain;
  visibility: hidden;
  opacity: 0;
}
.lightbox.is-video .lightbox__frame img {
  display: none;
}
.lightbox.is-video .lightbox__video {
  display: block;
}
.lightbox.is-video .lightbox__viewport {
  touch-action: pan-y;
}
.lightbox.is-video .lightbox__video.is-ready {
  visibility: visible;
  opacity: 1;
}
.lightbox.is-video .lightbox__hint {
  display: none;
}
.lightbox__fullscreen {
  position: absolute;
  right: auto;
  bottom: max(16px, calc(16px + env(safe-area-inset-bottom)));
  z-index: 2;
  display: none;
  align-items: center;
  gap: 6px;
  padding: 9px 13px;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 999px;
  color: #fff;
  background: rgb(0 0 0 / 68%);
  box-shadow: 0 8px 24px rgb(0 0 0 / 24%);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  left: 50%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 180ms ease,
    background 180ms ease,
    visibility 180ms ease;
  transform: translateX(-50%);
}
.lightbox.is-guidebook .lightbox__fullscreen {
  display: inline-flex;
}
.lightbox.is-guidebook .lightbox__viewport:hover .lightbox__fullscreen,
.lightbox.is-guidebook .lightbox__fullscreen:focus-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.lightbox__fullscreen:hover,
.lightbox__fullscreen:focus-visible {
  background: rgb(0 0 0 / 86%);
}
.lightbox__fullscreen-controls {
  position: fixed;
  bottom: max(16px, calc(16px + env(safe-area-inset-bottom)));
  left: 50%;
  z-index: 4;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 6px 10px;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 999px;
  color: #fff;
  background: rgb(3 12 19 / 76%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 18%),
    0 10px 30px rgb(0 0 0 / 26%);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateX(-50%);
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}
.lightbox.is-guidebook.is-controls-visible .lightbox__fullscreen-controls,
.lightbox.is-guidebook .lightbox__fullscreen-controls:hover,
.lightbox.is-guidebook .lightbox__fullscreen-controls:focus-within {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%);
}
.lightbox__fullscreen-controls button {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  cursor: pointer;
  appearance: none;
}
.lightbox__fullscreen-controls button:not(:disabled):hover,
.lightbox__fullscreen-controls button:not(:disabled):focus-visible {
  border-color: rgb(255 255 255 / 34%);
  background: rgb(255 255 255 / 24%);
  backdrop-filter: blur(14px) saturate(165%);
  -webkit-backdrop-filter: blur(14px) saturate(165%);
}
.lightbox__fullscreen-controls button:disabled {
  color: rgb(255 255 255 / 38%);
  cursor: default;
  opacity: 0.72;
}
.lightbox__fullscreen-controls svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.lightbox__fullscreen-nav--prev svg,
.lightbox__nav--prev svg {
  transform: translateX(-1px);
}
.lightbox__fullscreen-nav--next svg,
.lightbox__nav--next svg {
  transform: none;
}
.lightbox__fullscreen-close svg {
  transform: translateX(-1px);
}
.lightbox__fullscreen-page {
  min-width: 48px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.lightbox__fullscreen-close svg {
  width: 19px;
  height: 19px;
}
.lightbox:fullscreen .lightbox__fullscreen,
.lightbox.is-fullscreen-fallback .lightbox__fullscreen {
  display: none;
}
.lightbox:fullscreen.is-guidebook .lightbox__fullscreen-controls,
.lightbox.is-fullscreen-fallback.is-guidebook .lightbox__fullscreen-controls {
  display: flex;
}
.lightbox:fullscreen,
.lightbox.is-fullscreen-fallback {
  width: 100vw;
  height: 100dvh;
  padding: 0;
}
.lightbox:fullscreen .lightbox__frame,
.lightbox.is-fullscreen-fallback .lightbox__frame {
  display: block;
  width: 100%;
  height: 100dvh;
  max-width: none;
  max-height: 100%;
}
.lightbox:fullscreen .lightbox__viewport,
.lightbox.is-fullscreen-fallback .lightbox__viewport {
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  border-radius: 0;
}
.lightbox:fullscreen.has-resource-nav:not(.is-zoomed) .lightbox__nav,
.lightbox.is-fullscreen-fallback.has-resource-nav:not(.is-zoomed)
  .lightbox__nav {
  display: none;
}
.lightbox:fullscreen .lightbox__title,
.lightbox.is-fullscreen-fallback .lightbox__title {
  position: fixed;
  top: 20px;
  left: 24px;
  z-index: 3;
  max-width: calc(100% - 48px);
  margin: 0;
  text-align: left;
}
.lightbox:fullscreen .lightbox__hint,
.lightbox.is-fullscreen-fallback .lightbox__hint {
  position: fixed;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 3;
  margin: 0;
}
.lightbox:fullscreen .lightbox__close,
.lightbox.is-fullscreen-fallback .lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
}
.lightbox:fullscreen .lightbox__title,
.lightbox:fullscreen .lightbox__hint,
.lightbox:fullscreen .lightbox__close,
.lightbox.is-fullscreen-fallback .lightbox__title,
.lightbox.is-fullscreen-fallback .lightbox__hint,
.lightbox.is-fullscreen-fallback .lightbox__close {
  display: none;
}
.lightbox:fullscreen .lightbox__frame img,
.lightbox.is-fullscreen-fallback .lightbox__frame img {
  width: auto;
  height: 100dvh;
  max-width: 100vw;
  max-height: 100dvh;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.lightbox.is-fullscreen-fallback {
  width: 100vw;
  height: 100dvh;
  padding: 0;
}
.lightbox.is-fullscreen-fallback .lightbox__frame {
  width: 100%;
}
.lightbox.is-fullscreen-fallback .lightbox__viewport {
  width: 100%;
}
.lightbox__nav {
  position: fixed;
  top: 50%;
  z-index: 2;
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgb(255 255 255 / 48%);
  border-radius: 50%;
  color: #073f43;
  background: #e0f7fa;
  box-shadow: 0 10px 24px rgb(0 0 0 / 24%);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background 180ms ease;
}
.lightbox.has-resource-nav:not(.is-zoomed) .lightbox__nav {
  display: grid;
}
.lightbox__nav--prev {
  left: 24px;
}
.lightbox__nav--next {
  right: 24px;
}
.lightbox__nav:hover,
.lightbox__nav:focus-visible {
  background: #f4feff;
  transform: translateY(-50%) scale(1.06);
}
.lightbox__nav:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: auto;
}
.lightbox__nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lightbox__hint {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 20px 0 0;
  color: rgb(255 255 255 / 88%);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0px 0px 3px #000;
}
.lightbox__hint small {
  color: rgb(255 255 255 / 66%);
  font-size: 11px;
  font-weight: 500;
}
.lightbox__hint--touch {
  display: none;
}
.lightbox.is-zoomed {
  padding: 0;
  place-items: stretch;
}
.lightbox.is-zoomed .lightbox__frame {
  display: block;
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
}
.lightbox.is-zoomed .lightbox__viewport {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  overflow: hidden;
  border-radius: 0;
}
.lightbox.is-zoomed .lightbox__frame img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  cursor: grab;
}
.lightbox:fullscreen.is-zoomed .lightbox__frame img,
.lightbox.is-fullscreen-fallback.is-zoomed .lightbox__frame img {
  width: auto;
  height: 100dvh;
  max-width: 100vw;
  max-height: 100dvh;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.lightbox.is-zoomed.is-panning .lightbox__frame img {
  cursor: grabbing;
}
.lightbox.is-zoomed .lightbox__title {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 2;
  max-width: calc(100% - 48px);
  margin: 0;
  text-align: left;
}
.lightbox.is-zoomed .lightbox__hint {
  position: absolute;
  right: 20px;
  bottom: max(18px, calc(18px + env(safe-area-inset-bottom)));
  left: 20px;
  z-index: 2;
  margin: 0;
}
.lightbox.is-zoomed .lightbox__close {
  top: 20px;
  right: 20px;
  border-color: rgb(255 255 255 / 52%);
  background: rgb(16 22 30 / 80%);
}
.lightbox.is-loading .lightbox__frame::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 3px solid rgb(255 255 255 / 30%);
  border-top-color: #fff;
  border-radius: 50%;
  content: '';
  animation: lightbox-loading 700ms linear infinite;
  transform: translate(-50%, -50%);
}
.lightbox.is-loading .lightbox__frame img:not(.is-ready) {
  min-width: 80px;
  min-height: 80px;
  opacity: 0;
}
.lightbox.is-loading .lightbox__video:not(.is-ready) {
  min-width: 80px;
  min-height: 80px;
  opacity: 0;
}
.lightbox__close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #10161e;
  border-radius: 50%;
  color: #fff;
  background: #10161e;
  cursor: pointer;
}
.lightbox__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}
@keyframes lightbox-loading {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 900px), (hover: none) and (pointer: coarse) {
  .lightbox__hint--desktop {
    display: none;
  }
  .lightbox__hint--touch {
    display: flex;
  }
  .lightbox.has-resource-nav:not(.is-zoomed) .lightbox__nav {
    display: none;
  }
  .lightbox.is-guidebook .lightbox__fullscreen {
    position: fixed;
    right: auto;
    bottom: max(16px, calc(16px + env(safe-area-inset-bottom)));
    left: 50%;
    z-index: 5;
    margin: 0;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(-50%);
  }
}
@media (min-width: 641px) and (max-width: 1100px),
  (min-width: 641px) and (hover: none) and (pointer: coarse) {
  .lightbox:not(.is-zoomed):not(:fullscreen):not(.is-fullscreen-fallback)
    .lightbox__frame {
    top: -28px;
  }
}
@media (max-width: 640px) {
  .lightbox {
    padding: max(20px, env(safe-area-inset-top))
      max(52px, env(safe-area-inset-right))
      max(20px, calc(20px + env(safe-area-inset-bottom)))
      max(52px, env(safe-area-inset-left));
  }
  .lightbox__nav--prev {
    left: 14px;
  }
  .lightbox__nav--next {
    right: 14px;
  }
  .lightbox__nav {
    width: 40px;
    height: 40px;
  }
  .lightbox__nav svg {
    width: 18px;
    height: 18px;
  }
}
.works-section {
  min-height: 100svh;
  padding: 98px 30px 72px;
  background: #e0f7fa;
}
.works-shell {
  max-width: 1500px;
  margin: 0 auto;
}
.works-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}
.works-intro {
  padding: 44px 0 0;
}
.works-intro__index {
  margin: 0 0 38px;
  color: #317b80;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.display-title--works {
  color: #073f43;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 680;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.works-intro > p:last-child {
  max-width: 310px;
  margin: 38px 0 0;
  color: #205e62;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
}
.works-explorer {
  min-width: 0;
  padding: 22px;
  border: 0;
  border-radius: 32px;
  background: #b2ebf2;
  box-shadow: 0 18px 54px rgb(0 96 100 / 9%);
}
.works-file-area {
  position: relative;
}
.works-tabs {
  --tab-width: 76px;
  position: absolute;
  bottom: 16px;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 999px;
  background: rgb(224 247 250 / 78%);
  box-shadow: 0 8px 24px rgb(0 96 100 / 11%);
  transform: translateX(-50%);
}
.works-tabs::before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: var(--tab-width);
  border-radius: 999px;
  background: #e0f7fa;
  box-shadow: 0 5px 14px rgb(0 96 100 / 10%);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.works-tabs--video::before {
  transform: translateX(calc(var(--tab-width) + 4px));
}
.works-tabs button {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: var(--tab-width);
  min-height: 56px;
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  color: #317b80;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 200ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}
.works-tab__icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.works-tab__label {
  line-height: 1;
}
.works-tabs button.is-active {
  color: #073f43;
}
.works-tabs button:not(.is-active):hover,
.works-tabs button:not(.is-active):focus-visible {
  color: #073f43;
  background: rgb(255 255 255 / 30%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 48%);
}
.works-file-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 14px;
  height: clamp(400px, 52vh, 560px);
  max-height: min(58vh, 560px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 2px 5px 84px 2px;
  border-radius: 22px;
  align-content: start;
  scrollbar-color: rgb(0 96 100 / 28%) transparent;
}
.works-file {
  min-width: 0;
  padding: 0;
  border: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  font: inherit;
  cursor: pointer;
  animation: work-file-enter 260ms ease both;
}
.works-file__thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border: 0;
  border-radius: 18px;
  background: #071018;
}
.works-file__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}
.works-file:hover .works-file__thumb img,
.works-file:focus-visible .works-file__thumb img {
  transform: scale(1.06);
}
.works-file__play {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #073f43;
  background: #e0f7fa;
  font-size: 11px;
}
.works-file__title {
  display: block;
  margin: 10px 3px 3px;
  overflow: hidden;
  color: #073f43;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.works-file__meta {
  display: block;
  margin: 0 3px;
  overflow: hidden;
  color: #317b80;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.works-file[hidden] {
  display: none;
}
.content-section {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  min-height: 62vh;
  margin: 0 30px;
  padding: 40px 0 60px;
  border-top: 1px solid rgb(16 17 20 / 18%);
}
.content-section__index,
.content-section__note,
.content-section p {
  margin: 0;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.content-section p {
  margin-bottom: 28px;
  color: #6d7076;
}
.display-title--section {
  max-width: 920px;
  font-size: clamp(38px, 6.4vw, 102px);
  font-weight: 540;
  line-height: 1.1;
  letter-spacing: -0.06em;
}
.content-section__note {
  color: #8a8b8d;
}
.contact-footer {
  --contact-columns: minmax(0, 0.75fr) minmax(300px, 1.25fr);
  --contact-gap: clamp(28px, 4vw, 72px);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 56px;
  min-height: max(620px, 76svh);
  overflow: hidden;
  padding: clamp(56px, 8vw, 116px) 30px 36px;
  color: #073f43;
  background: #e6f8fb;
}
.contact-footer::before {
  position: absolute;
  z-index: 0;
  inset: -10px;
  content: '';
  background: url('images/footer.png') center / cover no-repeat;
  filter: blur(5px);
  transform: scale(1.02);
  pointer-events: none;
}
.contact-footer::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: '';
  background: rgb(230 248 251 / 58%);
  pointer-events: none;
}
.contact-footer > * {
  position: relative;
  z-index: 1;
}
.contact-footer__main {
  display: grid;
  grid-template-columns: var(--contact-columns);
  align-self: center;
  align-items: end;
  gap: var(--contact-gap);
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
}
.contact-footer__message h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(54px, 6.7vw, 108px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
}
.contact-footer__details {
  display: grid;
  align-items: start;
  gap: 14px;
}
.contact-footer__links {
  display: grid;
  gap: 10px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #073f43;
}
.contact-link__icon {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
}
.contact-link__icon svg {
  width: 21px;
  height: 21px;
  fill: #073f43;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-link__label {
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.025em;
  transition:
    transform 220ms ease,
    background 220ms ease;
}
.contact-link__label:hover,
.contact-link__label:focus-visible {
  background: rgb(255 255 255 / 56%);
  transform: translateY(3px);
}
.contact-footer__bottom {
  position: relative;
  display: grid;
  grid-template-columns: var(--contact-columns);
  align-items: end;
  gap: var(--contact-gap);
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
}
.contact-footer__credit,
.contact-footer__invite,
.contact-footer__location {
  margin: 0;
  color: #205e62;
  font-size: 14px;
  font-weight: 580;
  line-height: 1.35;
  letter-spacing: -0.025em;
}
.contact-footer__invite {
  font-size: 16px;
  font-weight: 520;
}
.contact-footer__top {
  position: absolute;
  right: 0;
  bottom: 0;
}

@keyframes breathe {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.075);
  }
}
@keyframes scroll-pulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
@keyframes work-file-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-intro-line {
  from {
    opacity: 0;
    transform: translateX(40px);
    font-weight: 100;
  }
  to {
    opacity: 1;
    transform: translateX(0);
    font-weight: 900;
  }
}
@keyframes hero-intro-fade {
  0% {
    opacity: 1;
    background-color: #e0f7fa;
  }
  45% {
    opacity: 1;
    background-color: #fff;
  }
  100% {
    opacity: 0;
    background-color: #fff;
    visibility: hidden;
  }
}
@keyframes hero-intro-color-fade {
  from {
    color: #073f43;
  }
  to {
    color: #fff;
  }
}
@keyframes hero-logo-liquid-fade {
  from {
    opacity: 0.78;
  }
  to {
    opacity: 0;
  }
}
@keyframes hero-logo-solid-reveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .top-nav {
    gap: 16px;
  }
  .dock-nav__item {
    width: calc((100vw - 50px) / 5);
  }
  .hero-logo__svg {
    width: min(84vw, 520px);
  }
  .hero__content {
    bottom: 150px;
  }
  .profile-section {
    padding-top: 88px;
  }
  .profile-layout {
    grid-template-columns: 1fr;
    grid-template-areas: 'profile' 'details' 'journey';
    min-height: auto;
  }
  .profile-card {
    min-height: 500px;
  }
  .profile-card__body {
    grid-template-columns: minmax(150px, 30%) minmax(0, 1fr);
  }
  .profile-details {
    grid-template-columns: 1fr;
  }
  .info-card {
    min-height: 126px;
  }
  .journey-card {
    min-height: 520px;
  }
  .content-section {
    grid-template-columns: 60px minmax(0, 1fr);
  }
  .content-section__note {
    display: none;
  }
}

@media (min-width: 641px) and (max-width: 1100px) {
  .dock-header {
    min-width: 0;
    width: min(620px, calc(100vw - 96px));
  }
  .dock-nav {
    width: 100%;
  }
  .dock-nav__item {
    flex: 1;
    width: auto;
  }
  .profile-section {
    padding: 96px clamp(32px, 5vw, 56px) 36px;
  }
  .profile-layout {
    grid-template-columns: 1fr;
    grid-template-areas: 'profile' 'details' 'journey';
    grid-template-rows: auto;
    gap: 16px;
  }
  .profile-card {
    min-height: 460px;
    padding: 24px;
  }
  .profile-card__body {
    grid-template-columns: minmax(180px, 0.78fr) minmax(280px, 1.22fr);
    align-content: center;
    align-items: center;
    gap: clamp(34px, 6vw, 72px);
    row-gap: clamp(16px, 2.4vw, 28px);
    padding: 34px clamp(16px, 4vw, 44px) 18px;
  }
  .profile-avatar {
    width: min(100%, 260px);
  }
  .display-title--profile {
    font-size: clamp(44px, 6.2vw, 66px);
  }
  .profile-details {
    grid-template-columns: 0.78fr 1fr 1.55fr;
  }
  .info-card {
    min-height: 144px;
  }
  .journey-card {
    min-height: auto;
    padding: clamp(34px, 5vw, 54px);
  }
  .display-title--journey {
    margin-bottom: 48px;
  }
}

@media (max-width: 640px) {
  .hero-intro {
    padding: 24px 18px;
  }
  .hero-intro__lines {
    font-size: clamp(46px, 16vw, 72px);
    line-height: 1.2;
    letter-spacing: -0.025em;
  }
  .hero-logo__svg {
    width: min(84vw, 520px);
  }
  .hero h1 {
    font-size: clamp(64px, 21vw, 96px);
    line-height: 0.82;
  }
  .hero__content {
    bottom: 150px;
  }
  .scroll-cue {
    bottom: 102px;
  }
  .dock-header {
    bottom: 16px;
    height: 64px;
    min-width: calc(100vw - 24px);
    padding: 4px;
    border-radius: 999px;
  }
  .dock-nav__item {
    width: calc((100vw - 34px) / 5);
    height: 54px;
    border-radius: 999px;
  }
  .dock-nav__item svg {
    width: 20px;
    height: 20px;
  }
  .dock-nav__item span {
    max-width: 58px;
    overflow: hidden;
    font-size: 9px;
    text-overflow: ellipsis;
  }
  .top-header {
    height: calc(64px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 18px 0;
  }
  .site-signature {
    width: 148px;
    height: 40px;
  }
  .site-signature__logo {
    width: 148px;
  }
  .top-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #073f43;
    background: transparent;
    cursor: pointer;
    place-items: center;
    transition:
      background 220ms ease,
      box-shadow 220ms ease;
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus-visible {
    background: rgb(255 255 255 / 36%);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 52%);
  }
  .mobile-menu-toggle__mark {
    position: relative;
    display: block;
    width: 24px;
    height: 20px;
  }
  .mobile-menu-toggle__mark span {
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
      top 360ms cubic-bezier(0.22, 1, 0.36, 1),
      left 360ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 180ms ease,
      width 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .mobile-menu-toggle__mark span:nth-child(1) {
    top: 2px;
  }
  .mobile-menu-toggle__mark span:nth-child(2) {
    top: 9px;
  }
  .mobile-menu-toggle__mark span:nth-child(3) {
    top: 16px;
  }
  .top-header.is-menu-open .mobile-menu-toggle__mark span:nth-child(1) {
    top: 15px;
    left: 3px;
    width: 13px;
    transform: rotate(-45deg);
    transform-origin: left center;
  }
  .top-header.is-menu-open .mobile-menu-toggle__mark span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.5);
  }
  .top-header.is-menu-open .mobile-menu-toggle__mark span:nth-child(3) {
    top: 15px;
    left: 8px;
    width: 13px;
    transform: rotate(45deg);
    transform-origin: right center;
  }
  .mobile-menu {
    position: fixed;
    z-index: 45;
    top: calc(64px + env(safe-area-inset-top));
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 28px max(32px, env(safe-area-inset-bottom));
    color: #073f43;
    background: #e0f7fa;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-28px);
    transition:
      transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 260ms ease;
  }
  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-menu__nav {
    display: grid;
    justify-items: center;
    gap: clamp(22px, 4.5vh, 38px);
    text-align: center;
    transform: translateY(-32px);
  }
  .mobile-menu__nav a {
    width: fit-content;
    font-size: clamp(34px, 11vw, 52px);
    font-weight: 580;
    line-height: 0.95;
    letter-spacing: -0.065em;
    transition:
      color 220ms ease,
      letter-spacing 220ms ease;
  }
  .mobile-menu__nav a:hover,
  .mobile-menu__nav a:focus-visible {
    color: #006064;
    letter-spacing: -0.04em;
  }
  .mobile-menu__footer {
    position: absolute;
    right: 28px;
    bottom: max(32px, env(safe-area-inset-bottom));
    left: 28px;
    display: grid;
    justify-items: center;
    gap: 12px;
    color: #205e62;
    font-size: 14px;
    font-weight: 580;
    letter-spacing: -0.02em;
  }
  .mobile-menu__github {
    min-width: 154px;
    padding: 10px 24px;
    border: 1px solid rgb(255 255 255 / 70%);
    border-radius: 999px;
    background: rgb(178 235 242 / 52%);
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 58%),
      0 8px 22px rgb(0 96 100 / 9%);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    text-align: center;
    transition:
      color 220ms ease,
      background 220ms ease,
      box-shadow 220ms ease;
  }
  .mobile-menu__github:hover,
  .mobile-menu__github:focus-visible {
    color: #073f43;
    background: rgb(255 255 255 / 52%);
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 76%),
      0 10px 26px rgb(0 96 100 / 14%);
  }
  .portfolio-sections {
    padding-inline: 20px;
  }
  .profile-section {
    margin-inline: -20px;
    padding: 80px 20px 20px;
  }
  .profile-layout {
    gap: 12px;
  }
  .profile-card {
    min-height: 460px;
    padding: 16px;
    border-radius: 24px;
  }
  .glass-control {
    height: 48px;
  }
  .glass-control--label {
    min-width: 104px;
    padding-inline: 20px;
    font-size: 17px;
  }
  .glass-control--arrow {
    width: 48px;
  }
  .profile-card__body {
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    gap: 28px;
    padding: 30px 4px 14px;
    text-align: center;
  }
  .profile-avatar {
    grid-row: auto;
  }
  .profile-card__body > p {
    grid-column: 1;
    width: 100%;
    margin: -14px 0 0;
    text-align: center;
  }
  .profile-avatar {
    width: min(54vw, 220px);
  }
  .display-title--profile {
    max-width: 9em;
    font-size: clamp(30px, 8.8vw, 48px);
    line-height: 1.1;
    letter-spacing: normal;
    text-align: center;
    text-wrap: balance;
  }
  .profile-details {
    gap: 12px;
  }
  .info-card,
  .journey-card {
    border-radius: 24px;
  }
  .info-card {
    min-height: 120px;
    padding: 20px;
  }
  .info-card p {
    margin-bottom: 24px;
  }
  .journey-card {
    min-height: auto;
    padding: 28px 22px;
  }
  .display-title--journey {
    margin-bottom: 36px;
    font-size: clamp(36px, 11vw, 54px);
  }
  .journey-list li {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 0;
  }
  .content-section {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 54vh;
    margin-inline: 0;
  }
  .display-title--section {
    font-size: clamp(38px, 12vw, 62px);
  }
  .contact-footer {
    grid-template-rows: auto;
    gap: 54px;
    min-height: 0;
    width: 100%;
    margin-inline: 0;
    padding: 72px 20px 32px;
  }
  .contact-footer__main {
    grid-template-columns: 1fr;
    align-self: auto;
    align-items: start;
    gap: 54px;
  }
  .contact-footer__message h2 {
    font-size: clamp(50px, 15vw, 68px);
  }
  .contact-footer__details {
    gap: 16px;
  }
  .contact-footer__bottom {
    position: static;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: '. top' 'credit location';
    align-items: end;
    width: 100%;
    column-gap: 20px;
    row-gap: 18px;
  }
  .contact-footer__credit {
    grid-area: credit;
    justify-self: start;
  }
  .contact-footer__location {
    grid-area: location;
    justify-self: end;
    text-align: right;
  }
  .contact-footer__top {
    position: static;
    grid-area: top;
    justify-self: end;
    margin-bottom: 6px;
  }
}

@media (max-width: 900px) {
  .branding-section {
    padding: 88px 20px 56px;
  }
  .branding-preview {
    height: 460px;
  }
  .branding-card {
    right: 24px;
  }
  .resource-card {
    flex-basis: clamp(180px, 27vw, 230px);
  }
}

@media (max-width: 640px) {
  .branding-section {
    margin-inline: -20px;
    padding: 80px 20px 48px;
  }
  .section-controls {
    margin-bottom: 24px;
  }
  .branding-feature {
    margin-bottom: 54px;
  }
  .branding-preview {
    height: 360px;
    border-radius: 24px;
  }
  .branding-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: -26px 0 0;
    padding: 22px;
    border-radius: 24px;
  }
  .resource-gallery {
    padding: 12px;
    border-radius: 24px;
  }
  .resource-card {
    flex-basis: min(180px, calc((100% - 24px) / 3));
  }
  .resource-nav--prev {
    left: 12px;
  }
  .resource-nav--next {
    right: 12px;
  }
  .lightbox {
    padding: 20px;
  }
}

@media (max-width: 1100px) {
  .works-section {
    padding: 88px 32px 60px;
  }
  .works-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .works-intro {
    padding-top: 0;
  }
  .works-intro > p:last-child {
    max-width: 520px;
  }
  .works-file-grid {
    height: min(54vh, 520px);
    min-height: 380px;
    max-height: none;
  }
}

@media (max-width: 640px) {
  .works-section {
    margin-inline: -20px;
    padding: 80px 20px 48px;
  }
  .works-explorer {
    padding: 16px;
    border-radius: 24px;
  }
  .works-file-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 10px;
    height: min(56vh, 520px);
    min-height: 360px;
    max-height: none;
    padding-bottom: 78px;
  }
  .works-tabs {
    bottom: 12px;
  }
  .works-intro__index {
    margin-bottom: 24px;
  }
  .display-title--works {
    font-size: clamp(42px, 11vw, 62px);
  }
  .works-intro > p:last-child {
    margin-top: 24px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero__visual,
  .scroll-cue__arrow,
  .hero-intro,
  .hero-intro__line,
  .hero-logo__svg {
    animation: none;
  }
  .hero-intro {
    display: none;
  }
  .hero-logo {
    visibility: visible;
    opacity: 1;
  }
  .hero-logo__svg {
    filter: none;
  }
  .hero-logo__solid {
    opacity: 1;
  }
  .hero-logo__liquid {
    animation: none;
    opacity: 0;
  }
  .lightbox__fullscreen-controls,
  .lightbox__fullscreen-controls button {
    transition: none;
  }
  .hero-logo__glass-glow,
  .hero-logo__glass-edge {
    animation: none;
    opacity: 0;
  }
  body:has(.hero-intro.is-active) .dock-header {
    opacity: 1;
    pointer-events: auto;
  }
  .dock-header,
  .top-header,
  .dock-nav__item,
  .top-nav a,
  .works-tabs::before,
  .works-tabs button,
  .mobile-menu,
  .mobile-menu-toggle__mark span,
  .contact-link__label,
  .contact-footer__top {
    transition-duration: 0.01ms;
  }
  .works-file {
    animation: none;
  }
}
